我希望用Python做一些twitter编程。我目前正在使用Sixohsix的优秀Python Twitter工具。我可以将我的应用中的推文发布到我的机器人帐户供稿,但目前无法检索Twitter流媒体API。这是我的代码:
creds = connect.createCredsDict()
t = TwitterStream(auth=OAuth(creds['accessToken'],
creds['accessTokenSecret'],
creds['conKey'],
creds['conSecret']))
for msg in t.user():
print msg['direct_message']['text']
我收到以下错误:
ValueError: No JSON object could be decoded
对于那些不了解PTT的人,要访问的默认流是公共流。它可能是我需要更新的应用程序中的权限吗?
非常感谢任何帮助。
谢谢,
约翰