我开始使用 google+ API,但我遇到了身份验证问题,即使在 Google Playground 中也是如此。
我想做一件非常简单的事情,就是让我的用户圈出来的人,所以,我使用范围:
/auth/plus.circles.read /auth/plus.me
我要求:
https://www.googleapis.com/plusDomains/v1/people/me/circles
在 Google PlayGround 和 API 页面https://developers.google.com/+/domains/api/circles/list中允许您对其进行测试,他们都给了我回复:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured"
}
],
"code": 403,
"message": "Access Not Configured"
}
}
这很奇怪,因为它说我的访问权限没有配置,但应该是。我什至尝试添加 google+ 域 API 的所有范围...
提前致谢