在尝试抓取播放列表的简单json提要时,我遇到了此错误。
我不想为这么小的片段包含Youtube库,所以我选择手动抓取json,使用:
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&key=<API_KEY>&playlistId=<PLAYLIST_ID>
但我一直收到:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
}
],
"code": 403,
"message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
}
}
- 我已经通过控制台启用了API
- 我已经得到了密钥使用我的调试。keystore和my release.keystore
- 包名正确,SHA1的
解决方案
在浏览器应用程序中使用键而不是Android键。不要忘记使用https
将referers字段留空。
希望这能为别人节省一些时间——它会为我节省一点时间!