我一直在使用v3 API向Blogger博客发布帖子一段时间了。突然,今天早上我尝试插入帖子时出现403 "Insufficient Permission"
错误。为了确保它不是我的代码中的内容,我尝试插入API Explorer的帖子。我使用提供的范围(https://www.googleapis.com/auth/blogger
)授权请求,并尝试插入以下帖子资源:
{
"kind": "blogger#post",
"blog": {
"id": "xxxxxxxx"
},
"title": "Test Post",
"content": "This is a test post"
}
当我尝试执行请求时,出现以下错误:
403 Forbidden
- Hide headers -
cache-control: private, max-age=0
content-encoding: gzip
content-length: 136
content-type: application/json; charset=UTF-8
date: Wed, 11 Sep 2013 18:18:21 GMT
expires: Wed, 11 Sep 2013 18:18:21 GMT
server: GSE
www-authenticate: Bearer realm="https://www.google.com/accounts/AuthSubRequest", error=insufficient_scope, scope="https://www.googleapis.com/auth/blogger"
{
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientPermissions",
"message": "Insufficient Permission"
}
],
"code": 403,
"message": "Insufficient Permission"
}
}
任何人都知道为什么今天突然不起作用了?谢谢!
答案 0 :(得分:1)
看起来这是一个Blogger问题。问题已在他们身边解决,我的应用程序再次正常工作。
答案 1 :(得分:0)
我也有这个问题,说实话我很高兴我不是唯一有这个问题的人!如果您尝试通过Oauth游乐场进行操作,也会出现此错误,对我而言,它正在获取用户博客的列表。