我跑了一段python脚本在我的blogspot博客上发表文章。 一切顺利,直到我开始得到这个身份验证错误
RequestError: {'status': 401, 'body': 'User does not have permission to create new post', 'reason': 'Unauthorized'}
我真的无法理解如何修复它阅读gdata文档。
你能建议我怎么做吗?
谢谢
这里我的代码部分不再起作用了:
from gdata import service
import gdata
import atom
blogger_service = service.GDataService('xxxxxx','xxxxxx')
blogger_service.service = 'blogger'
blogger_service.account_type = 'GOOGLE'
blogger_service.server = 'www.blogger.com'
blogger_service.ProgrammaticLogin()
def CreatePublicPost(blogger_service, blog_id, title, content,tags):
entry = gdata.GDataEntry()
entry.title = atom.Title('xhtml', title)
entry.content = atom.Content(content_type='html', text=content)
for tag in tags :
category = atom.Category(term=tag, scheme="http://www.blogger.com/atom/ns#")
entry.category.append(category)
return blogger_service.Post(entry, '/feeds/%s/posts/default' % blog_id)
答案 0 :(得分:1)
现在有一个API版本3.0 ...
这个旧版本已经过时,不再有效,显然......
您可以在此处找到更多相关信息: https://developers.google.com/blogger/ https://developers.google.com/blogger/docs/3.0/using/
如果您对身份验证有疑问,可能会有以下链接:
Having trouble trying to use gdata and oauth2 in python
Authentication with the Google Docs List API, Python and OAuth 2