我正在使用 tweepy 库在 Python 中为我的桌面制作一个小型新闻应用程序。正如我在主页中看到的那样:http: //github.com/joshthecoder/tweepy它支持 identi.ca 但我无法正确登录。要进行身份验证,我会:
auth = tweepy.BasicAuthHandler(username, password)
api = tweepy.API(host = 'identi.ca/api')
检查我是否正确登录:
if api.verify_credentials() is False:
print 'Unable to log in, check credentials and server status\n'
return 1
else:
print 'Correctly logged in!\n'
return 0
这总是返回 1 :(
请帮忙?谢谢!:D
PD:当然,用户名和密码是正确的凭据 :)