【发布时间】:2015-07-04 04:32:03
【问题描述】:
我想使用我创建的 Android Youtube API 谷歌控制台中的 API 密钥并将其添加到我的项目中。 现在,当我执行 Youtube 查询时,我收到以下消息:
04-25 16:41:05.899: W/System.err(7213): com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
04-25 16:41:05.900: W/System.err(7213): {
04-25 16:41:05.900: W/System.err(7213): "code" : 403,
04-25 16:41:05.900: W/System.err(7213): "errors" : [ {
04-25 16:41:05.900: W/System.err(7213): "domain" : "usageLimits",
04-25 16:41:05.900: W/System.err(7213): "message" : "There is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your API key configuration if request from this IP or referer should be allowed.",
04-25 16:41:05.900: W/System.err(7213): "reason" : "ipRefererBlocked",
04-25 16:41:05.900: W/System.err(7213): "extendedHelp" : "https://console.developers.google.com"
04-25 16:41:05.900: W/System.err(7213): } ],
04-25 16:41:05.900: W/System.err(7213): "message" : "There is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your API key configuration if request from this IP or referer should be allowed."
04-25 16:41:05.900: W/System.err(7213): }
我还需要做什么才能让谷歌不阻止我的请求?请求 每个用户的限制是每天 3000 个,我用了 0 个。
【问题讨论】:
-
这可能是一个愚蠢的问题,但您确实将您的原始 IP 添加到开发人员控制台中的 API 密钥中,对吗?错误消息不是配额消息,而是关于访问控制的。如果您通过某种代理运行,也可能发生这种情况。
标签: android youtube-api android-youtube-api