pythonを使ってのタイムラインを取得したいのですが、
最後のところでエラーが出てしまいます。
取得したアクセストークンが×のみで構成されており、これが正しい形なのか戸惑っています。ちゃんと取得できているのでしょうか。
また、Tracebackとなっていることから最後のstatus_list = api.home_timeline()が原因なのでしょうか。
python Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import tweepy >>> consumer_key = "" >>> consumer_secret = "" >>> access_token = "××××××××××××××××××××" >>> access_token_secret = "××××××××××××××××××××××××" >>> auth = tweepy.OAuthHandler(consumer_key, consumer_secret) >>> auth.set_access_token(access_token,access_token_secret) >>> api = tweepy.API(auth) >>> status_list = api.home_timeline() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Users\Shun\Documents\python\lib\site-packages\tweepy\binder.py", line 250, in _call return method.execute() File "C:\Users\Shun\Documents\python\lib\site-packages\tweepy\binder.py", line 233, in execute raise TweepError(error_msg, resp, api_code=api_error_code) tweepy.error.TweepError: [{'code': 89, 'message': 'Invalid or expired token.'}]
回答2件
あなたの回答
tips
プレビュー