因此,从 tweepy 文档中,我应该能够使用 api.me() 来获取用户关注的朋友列表:http://pythonhosted.org/tweepy/html/api.html#user-methods首先 ,我做了通常的OAuth舞蹈:
import tweepy
consumer_token='#####'
consumer_secret='$$$$$'
access_token='&&&&&'
access_token_secret='****'
auth = tweepy.OAuthHandler(consumer_token, consumer_secret)
auth.set_access_token(access_token,access_token_secret)
api = tweepy.API(auth)
daysinn_friends=api.me('DaysInnCanada')
然后python给了我一个错误说:
Traceback (most recent call last):
File "<pyshell#40>", line 1, in <module>
daysinn_friend=api.me('DaysInnCanada')
TypeError: me() takes exactly 1 argument (2 given)
但我没有将 2 个参数传递给 me(),唯一的参数是 screen_name。我真的很困惑,无法弄清楚。谢谢