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.