无法从Google Plus访问用户的个人资料

时间:2012-06-18 12:09:58

标签: java oauth-2.0 google-plus scribe

我正在使用Scribe-Java使用OAuth2连接到Google Plus。我能够对我的应用程序进行身份验证并获得用户的许可,但是当我尝试访问userinfo以外的任何内容时,我会收到此异常。

  

403

     

{

     

“错误”:{

  "errors": [
            {

          "domain": "usageLimits",
           "reason": "accessNotConfigured","message": "Access Not Configured"

            }

            ],

  "code": 403,

"message": "Access Not Configured"

     }

}

我已将应用程序的范围设置为https://www.googleapis.com/auth/plus.me https://www.googleapis.com/auth/userinfo.profile并访问用户的个人资料我正在使用此网址:

https://www.googleapis.com/plus/v1/people/{userid}/activities/public

你能告诉我我做错了什么吗?我需要在这里使用其他范围来访问配置文件吗?

2 个答案:

答案 0 :(得分:11)

1)访问Google API控制台: http://code.google.com/apis/console

2)转到'服务'页。

3)通过将Google+ API切换为开启

来启用它

答案 1 :(得分:0)

我使用HybridAuth在PHP中遇到了同样的错误:

我必须在 API&中的Google Developers Console中激活以下内容。 Auth - > 的API

  • 通讯录API
  • Google+ API

另见http://hybridauth.sourceforge.net/userguide/IDProvider_info_Google.html

上的讨论