我已经获得了消费者密钥、消费者秘密和访问令牌,但我不知道如何获取访问令牌秘密。这段代码可以工作,但我只需要访问令牌密码。提前感谢!
#!/usr/bin/python
#Import the necessary methods from tweepy library
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
#Variables that contains the user credentials to access stocktwits API
consumer_key = "something"
consumer_secret = "something"
access_token = "something"
#access_token_secret = ""
#This is a basic listener that just prints received tweets to stdout.
class StdOutListener(StreamListener):
def on_data(self, data):
print data
return True
def on_error(self, status):
print status
if __name__ == '__main__':
#This handles Twitter authetification and the connection to Twitter Streaming API
l = StdOutListener()
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
stream = Stream(auth, l)
#This line filter Twitter Streams to capture data by the keywords
stream.filter(track=['Hillary Clinton', '#Hillary', 'Donald Trump', '#Trump'])发布于 2017-05-05 00:43:12
StockTwits不提供access_token_secret。一旦您有了access token,该令牌就可以用于所有对该API的请求。你会希望看到你的OAuthHandler类只允许设置一个access_token。应该是这样的。
https://stackoverflow.com/questions/43751755
复制相似问题