I am starting to use the google+ API, but I am getting problems authenticating, even in the Google Playground.
I want to do a very easy thing, which is get the circled people of my user, so, I use the scopes:
/auth/plus.circles.read /auth/plus.me
And I request with:
https://www.googleapis.com/plusDomains/v1/people/me/circles
In both Google PlayGround, and in the API page https://developers.google.com/+/domains/api/circles/list which allows you to test it, both of them give me the response:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured"
}
],
"code": 403,
"message": "Access Not Configured"
}
}
It is strange, because it says that I my access is not configured, but it should be. I even try adding all the scopes of google+ domain API...
Thanks in advance
