我坚持使用以下
我正在尝试拨打YouTube Analytics API
我去了google的oAuth2游乐场https://developers.google.com/oauthplayground,在第一步中,我选择并授权了所有与youtube相关的API,如屏幕截图所示
然后在第2步我交换了令牌的自动化代码,在第3步,我将以下请求发送给API
https://www.googleapis.com/youtube/analytics/v1/reports?ids=channel%3D%3DMINE&start-date=2007-05-01&end-date=2015-06-30&metrics=estimatedMinutesWatched%2Cviews%2Clikes%2CsubscribersGained
我得到的是
{
"error": {
"code": 403,
"message": "Access Not Configured. The API (YouTube Analytics API) is not enabled for your project. Please use the Google Developers Console to update your configuration.",
"errors": [
{
"domain": "usageLimits",
"message": "Access Not Configured. The API (YouTube Analytics API) is not enabled for your project. Please use the Google Developers Console to update your configuration.",
"reason": "accessNotConfigured",
}
]
}
}
但我启用了YouTube Analytics API。
有什么想法吗? 非常感谢你的帮助!
答案 0 :(得分:0)
我们根本没有为OAuth 2.0 Playground使用的默认凭据启用此API。正如另一个答案所示,您始终可以在启用了Youtube Analytics API的项目中提供自己的凭据。但是我也只是启用了默认/演示凭据的API,这样你就可以再试一次你正在做的事情,现在应该可以正常工作。