Я пытаюсь перейти с V1 на V2 API YouTubeAnalytics.Но я не могу понять, в каком формате я должен сформулировать запрос.
Code Iam пытается запустить:
return analytics.reports().query()
.setIds(id)
.setMetrics("views")
.setDimensions("video")
.execute();
Но я получаю код ошибки 400, как показано ниже:
IOException: 400 Bad Request
com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request
{
"code" : 400,
"errors" : [ {
"domain" : "global",
"message" : "Could not parse content (CNHFwpxMq_TDnbpX_3GdjueOg) of field ids.",
"reason" : "badRequest"
} ],
"message" : "Could not parse content (CNHFwpxMq_TDnbpX_3GdjueOg) of field ids."
}
Есть предложения?