Google +访问权限不足

时间:2014-11-12 10:29:17

标签: google-plus google-oauth oauth2-playground

使用OAuth代码,我可以为google + API生成访问令牌。

oauthpalyground中使用此访问令牌获取JSON响应。

当我将此网址粘贴到浏览器中时,会收到错误消息。

 https://www.googleapis.com/plus/v1/activities?query=%22great%22&access_token=xxxxxxxxxxx 

错误消息

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "insufficientPermissions",
    "message": "Insufficient Permission"
   }
  ],
  "code": 403,
  "message": "Insufficient Permission"
 }
}

任何人都可以向我解释原因吗?

1 个答案:

答案 0 :(得分:0)

您无法直接从浏览器查询将access_token作为查询字符串发送。您必须以这种方式在标头中发送access_ token:

Authorization: Bearer <access_token>

尝试使用Fiddler或类似的软件。