ユーザーをサークルに追加したい。Using OAuth 2.0 to Access Google APIs with scopesaccess_token
の説明に従って取得しました。
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
次に、 Circles: addPeopleで説明されているように、HTTP 要求を呼び出しています。
https://www.googleapis.com/plusDomains/v1/circles/<circleId>/people?userId=<userID>
しかし、それに応じて私は得ています-
{
"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/."
}
}
プロジェクトのAPI の & Auth セクションでGoogle+ API、Google+ Domains APIを有効にしました。
前もって感謝します!