I am trying to use Google API explorer https://developers.google.com/apis-explorer/#p/youtubeAnalytics/v2/youtubeAnalytics.reports.query to request data which returns no values in rows tag but Youtube analytics dashboard is having values.
Following is the response which I am getting out of API Explorer,
200
- Show headers -
{
"kind": "youtubeAnalytics#resultTable",
"columnHeaders": [
{
"name": "ageGroup",
"columnType": "DIMENSION",
"dataType": "STRING"
},
{
"name": "gender",
"columnType": "DIMENSION",
"dataType": "STRING"
},
{
"name": "viewerPercentage",
"columnType": "METRIC",
"dataType": "FLOAT"
}
],
"rows": [
]
}
I'm clueless and not sure how to proceed further.