我正在为一个网页开展一个appengine项目。 我在开发者控制台中打开了Google+ API。 该网页以:
登录userService.createLoginURL(request.getRequestURI())
之后,我想要检索登录用户的个人资料图片。 为此,我导入了js-libraries:
<script src = "https://plus.google.com/js/client:platform.js" async defer></script>
和
<script src="https://apis.google.com/js/client:plusone.js" type="text/javascript"></script>
然后我执行:
gapi.client.load('plus','v1', function(){
var request = gapi.client.plus.people.get({
'userId': 'me'
});
request.execute(function(resp) {
console.log('Image at:' + resp.image.url);
});
});
但这会继续返回403错误:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "dailyLimitExceededUnreg",
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
"extendedHelp": "https://code.google.com/apis/console"
}
],
"code": 403,
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
}
}
我该如何解决这个问题?我错过了什么?
答案 0 :(得分:1)
我无法评论,所以我正在为它写一个答案。
转到Google开发者控制台:
请求数必须超过您尝试使用的API的每日可用限制。