私は次のことで立ち往生しています
YouTube アナリティクス 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 アナリティクス API を有効にしています。
何か案は?ご助力ありがとうございます!