0

我正在使用 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:当然,用户名和密码是正确的凭据 :)

4

1 回答 1

1

正如tweepy 文档所暗示的那样,使用 just identi.caas host 和设置api_rootto/api将是访问 identi.ca API 的正确方法。

于 2010-08-15T18:52:21.857 回答