0

I want to add user in circle. I have retrieved access_token as described in Using OAuth 2.0 to Access Google APIs with scopes :

https://www.googleapis.com/auth/plus.me
https://www.googleapis.com/auth/plus.circles.read
https://www.googleapis.com/auth/plus.circles.write
https://www.googleapis.com/auth/plus.stream.write

Then i am calling HTTP request as described in Circles: addPeople

https://www.googleapis.com/plusDomains/v1/circles/<circleId>/people?userId=<userID>

but in response i am getting -

{
 "error": {
  "errors": [
   {
   "domain": "plusDomains",
"reason": "forbiddenScope",
"message": "Access to the Google+ Domains API is not allowed as the user has consented to incompatible scopes. See: https://developers.google.com/+/domains/authentication/."
}
],
"code": 403,
"message": "Access to the Google+ Domains API is not allowed as the user has consented to incompatible scopes. See: https://developers.google.com/+/domains/authentication/."
}
}

I have enabled Google+ API, Google+ Domains API in project's API's & Auth section.

Thanks in advance!

Rahul Mane
  • 1,005
  • 18
  • 33
  • Try the [revoking access](https://support.google.com/accounts/answer/3466521) of the app. It might have been previously granted `plus.login` scope which is incompatible. With Domains API scopes. – abraham Jul 10 '15 at 16:24
  • yes tried but no use... getting same error. – Rahul Mane Jul 11 '15 at 05:12

0 Answers0