1

I'm using Google Playground for accessing Google+ APIs. When I try to call the API

 https://www.googleapis.com/plusDomains/v1/people/[user_id]/circles

..then it results in error:

{
  "error": {
    "code": 403, 
    "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project.", 
    "errors": [
      {
        "domain": "usageLimits", 
        "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project.", 
        "reason": "accessNotConfigured"
      }
    ]
  }
}

In step 1 on the playground page, I've selected both the 'Google+ Domain API' and 'Google+ API v1' and authorized and got the access tokens. Of course, [user_id] is replaced properly before making the API call.

4

1 回答 1

1

找出了原因。如果没有在 Google 上配置域帐户,则不能访问 Google+ 域 API。在 Google 上设置域帐户后,管理员需要设置权限以允许访问这些 API。

https://developers.google.com/+/domains/

于 2014-07-04T09:11:05.613 回答