这就是我用来向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."
}
}
答案 0 :(得分:2)
权限不足:请求的身份验证范围不足。
完全意味着当前已通过身份验证的用户尚未授予您这样做的权限。
如果您查看文档comments.insert,将会看到,要使用此方法,您必须使用https://www.googleapis.com/auth/youtube.force-ssl
范围对用户进行身份验证