gpt4 book ai didi

python - 使用 Tweepy 检索 Twitter 数据时出现 401 错误

转载 作者:太空狗 更新时间:2023-10-29 17:31:08 25 4
gpt4 key购买 nike

我正在尝试使用 Tweepy 检索 Twitter 数据,使用下面的代码,但我返回了 401 错误,并且我重新生成了访问和 secret token ,并且出现了同样的错误。

#imports
from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener

#setting up the keys
consumer_key = 'xxxxxxx'
consumer_secret = 'xxxxxxxx'
access_token = 'xxxxxxxxxx'
access_secret = 'xxxxxxxxxxxxx'

class TweetListener(StreamListener):
# A listener handles tweets are the received from the stream.
#This is a basic listener that just prints received tweets to standard output

def on_data(self, data):
print (data)
return True

def on_error(self, status):
print (status)



#printing all the tweets to the standard output
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)



stream = Stream(auth, TweetListener())

t = u"#سوريا"
stream.filter(track=[t])

最佳答案

只需重置系统时钟即可。

如果验证 API 请求来自服务器,该服务器声称它是 Twitter 时间 15 分钟之外的时间,它将失败并显示 401 错误。

谢谢

关于python - 使用 Tweepy 检索 Twitter 数据时出现 401 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28412683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com