是否有人使用 python 的 twitter 模块(https://github.com/sixohsix/twitter/tree/master)能够在 Twitter 帐户上发布图片?将文本发布到状态一切正常,但我不知道如何发布图片。谢谢您的帮助。
按照评论中的建议添加我的代码(谢谢!):
import twitter
t = twitter.Twitter(auth=twitter.OAuth('PAR1', 'PAR2','PAR3', 'PAR4')) #autentication is fine.
#t.statuses.update(status="Hello World!") #this command works fine!
t.updateStatusWithMedia('http://url_of_image', status="Hello World!") #that's what I need to do.