###したい事
Twitter APIを活用して特定キーワードの入ったツイートを取得、printさせたい
###質問理由
エラーが発生し実行できない為
###エラー内容
例外が発生しました: TweepError [{'code': 89, 'message': 'Invalid or expired token.'}] File "C:\Users\user\Desktop\twitterauto.py", line 18, in <module> search_results = api.search(q=q, count=count)
ターミナルに出るのでは無くsearch_results = api.search(q=q, count=count)
の所に赤い枠で発生します
###コード内容
py
1import tweepy 2 3CONSUMER_KEY = '-----' 4CONSUMER_SECRET = '-----' 5ACCESS_TOKEN = '-----' 6ACCESS_SECRET = '-----' 7 8auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET) 9auth.set_access_token(ACCESS_TOKEN, ACCESS_SECRET) 10api = tweepy.API(auth) 11 12q = "Test" 13count = 100 14 15search_results = api.search(q=q, count=count) 16 17for result in search_results: 18 username = result.user._json['screen_name'] 19 user_id = result.id 20 user = result.user.name 21 tweet = result.text 22 time = result.created_at 23 try: 24 api.create_favorite(user_id) 25 api.create_friendship(user_id) 26 except Exception as e: 27 print(e)
###環境
vscode/Python3.8.5
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/05 15:59