Tweepy 2.1: Add member to a list
问题 Using Tweepy2.1, I am trying to add a member ( people ) of my Twitter account to a list ( testlist ) with: import tweepy ... api = tweepy.API(auth) api.add_list_member(testlist, people) I get the following error: TweepError: [{'message': 'You must specify either a list ID or a slug and owner', 'code': 112}] I have tried other ways of calling the add_list_member function, but nothing worked. Also, I have some difficulties with the incomplete Tweepy documentation. Anyone have a solution for