2

我有一个关于 Google API 的问题。我的目标是从服务器将状态发布到我们的 Google+ 公司页面。所以它必须完全是服务器端的。

我从谷歌文档中看到了数百页,但我完全不明白。

当我尝试执行操作“plusDomains.activities.insert”(通过 API Explorer)时,出现错误:

{
 "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/."
 }
}

这个错误的原因是什么?我必须使用什么用户?在开发人员控制台中,我有 3 个用户和 1 个完整管理员(我的 G-Apps 帐户)。我应该将什么设置为客户端 ID 和谷歌凭据对象?

非常感谢您的任何建议。

4

1 回答 1

5

API Explorer 有一个错误,它默认使用与 Google+ 域帐户不兼容的范围。转到Google 帐户权限列表并从 撤消访问权限Google APIs Explorer。返回 API 资源管理器并再次授权,但取消选中https://www.googleapis.com/auth/plus.login仅保留范围plus.meplus.stream.write启用范围。

于 2014-10-07T19:02:39.707 回答