我想显示存储在我的App Engine中的用户(包含谷歌ID)的Google+个人资料图片,但当我要求超过5张图片时,Google会阻止请求(403禁止)。 有没有什么方法可以显示所有图像而不会被阻止?这是我的代码:
for(var i=0;i<data.items.length;i++){
if(data.items[i].userRole=="TEACHER") {
$.getJSON("https://www.googleapis.com/plus/v1/people/" + data.items[i].googlePlusId + "?fields=image&key=[API_KEY]", function(data) {
$(".teacheravatars").append("<img src='" + data.image.url + "' />");
});
}
else {
$.getJSON("https://www.googleapis.com/plus/v1/people/" + data.items[i].googlePlusId + "?fields=image&key=[API_KEY]", function(data) {
$(".studentavatars").append("<img src='" + data.image.url + "' />");
});
}
}