前提・実現したいこと
followers_idsが無いといわれます。
api.friend_ids、api.friends_idsでも同じでした。
発生している問題・エラーメッセージ
follower = tweepy.Cursor(api.followers_ids, id = user, cursor = -1).items() AttributeError: 'API' object has no attribute 'followers_ids'
該当のソースコード
python
1import tweepy 2 3consumer_key ="" 4consumer_secret ="" 5 6access_token="" 7access_token_secret ="" 8 9auth = tweepy.OAuthHandler(consumer_key, consumer_secret) 10auth.set_access_token(access_token, access_token_secret) 11 12 13api = tweepy.API(auth) 14 15user = ('@') 16follower = tweepy.Cursor(api.followers_ids, id = user, cursor = -1).items()
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。