My youtube analytics API script works perfectly in the past, but suddenly doesn't work any more. The problem is the json returned does not contain rows fields
{
'columnHeaders': [
{
'name': 'day',
'columnType': 'DIMENSION', 'dataType': 'STRING'
},
{
'name': '...',
'columnType': 'METRIC', 'dataType': '...'
}, ...
],
'kind': 'youtubeAnalytics#resultTable'
}
After googling, links below are very similar to my problem
https://productforums.google.com/forum/#!msg/youtube/e08jHBGtA_w/nksdr9S9AQAJ0
https://productforums.google.com/forum/#!topic/youtube/heVvzt4UqSs;context-place=topicsearchin/youtube/no$20data$20rows$20
However, either no answer or the solution provided doesn't work for me (my code already contains scope youtube.readonly ['https://www.googleapis.com/auth/youtube.readonly', 'https://www.googleapis.com/auth/ytanalytics.readonly']).
Is there is any status page that I can check if it's a problem at google end or how to check any place that might go wrong?
Thanks