我一直在开发Java语言应用程序。
现在我试图将登录的用户照片显示为用户数据的一部分,但我似乎没有做对。
通过UserService我获得了用户ID,并且使用了用户ID和我的应用程序api密钥,我正在尝试构建映像URL以将其加载到我的应用程序中。
但它不起作用。
我正在制作的网址是:https://www.googleapis.com/plus/v1/people/ {USER_ID}?fields = image& key = {API_KEY}
但我一直得到同样的错误:
{
"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."
}
}
我已在Google Developers Console中启用了以下API:
Drive API
Drive SDK
Google Cloud SQL
Google Compute Engine
Google Picker API
Google+ API
任何人都可以帮我一把吗?对不起,如果我把时间浪费在显而易见的事情上。
答案 0 :(得分:0)
检查您是否使用了正确的API密钥值。它们在开发人员控制台的Credentials部分中受到公共API访问,并且看起来像这样:AIzaSyC2WWuM97gdij5k5uRduLFeL3LuURBvFpo - 确保它是该表单,并与您为其启用API的项目相关联。