1
무엇이 누락 되었습니까? here으로 표시된 OAuth1 지침을 살펴본 후 올바른 access_key 및 access_secret을 받았지만 여전히 상태를 업데이트 할 수 없습니다.Twython 업데이트 상태가 OAuth1 키 후에도 작동하지 않습니다.
>> from twython import Twython
>> t = Twython('consumer_key','consumer_secret','access_key','access_secret')
>> t.update_status("test")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: update_status() takes exactly 1 argument (2 given)
get_user_timeline()
을 호출 할 수 있지만 그래도 가능합니다.
계정 차단이 될 수 있습니까?
update_status' (A Twython 기능이 기대되는이 아닌 트위터 기능) 참조 https://github.com/ryanmcgrath/ twython/blob/master/twython/endpoints.py # L94-L100 –