我有一个关于 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 和谷歌凭据对象?
非常感谢您的任何建议。