我能够使用 Google 服务帐户检索访问令牌,但是当我尝试使用相同的访问令牌来检索 GooglePlus 用户配置文件 API 时,我收到了下面提到的错误:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Not Found"
}
],
"code": 404,
"message": "Not Found"
}
}
我在使用 Google 服务帐户检索访问令牌时使用了范围值,https://www.googleapis.com/auth/plus.me
并且我能够获取访问令牌,但是如果我尝试使用相同的访问令牌来请求用户配置文件 API-即
https://www.googleapis.com/plus/v1/people/me?prettyprint=true
我得到上面的错误。
谁可以帮我这个事?