Youtube评论API:评论插入403权限不足

时间:2019-03-20 11:31:35

标签: youtube-api android-youtube-api

这就是我用来向youtube添加评论的方法:

gapi.client.youtube.commentThreads.insert({
          part: "snippet", commentData
        }).then(function (response) {
          console.log("response", response);
    })

这就是我被击中时得到的:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "insufficientPermissions",
    "message": "Insufficient Permission: Request had insufficient authentication scopes."
   }
  ],
  "code": 403,
  "message": "Insufficient Permission: Request had insufficient authentication scopes."
 }
}

1 个答案:

答案 0 :(得分:2)

  

权限不足:请求的身份验证范围不足。

完全意味着当前已通过身份验证的用户尚未授予您这样做的权限。

如果您查看文档comments.insert,将会看到,要使用此方法,您必须使用https://www.googleapis.com/auth/youtube.force-ssl范围对用户进行身份验证

enter image description here