Tweepy Bad Authenticaton数据

时间:2018-04-25 14:11:13

标签: python api twitter tweepy

我正在尝试使用Tweepy 3.6和Python 3.6制作Twitter机器人。现在我只想尝试使用这段代码连接我的Twitter帐户:

# Add all import statements at top of file
from src.credentials import *
import tweepy

if __name__ == '__main__':

    auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
    auth.set_access_token(access_token, access_token_secret)
    api = tweepy.API(auth)

    api.update_status('test')

但是我有这样的错误信息:

tweepy.error.TweepError: [{'code': 215, 'message': 'Bad Authentication data.'}]

我检查了我的应用的权限,它是读/写的。我还要仔细检查所有凭据,以确保我在这里没有犯错误

有什么想法吗?

0 个答案:

没有答案