流媒体推特直接消息

12

我正在使用以下代码流式传输接收到的 Twitter 账户直接消息:

from tweepy import Stream
from tweepy import OAuthHandler
from tweepy import API

from tweepy.streaming import StreamListener

# These values are appropriately filled in the code
consumer_key = ""
consumer_secret = ""
access_token = ""
access_token_secret = ""

class StdOutListener( StreamListener ):

    def __init__( self ):
        self.tweetCount = 0

    def on_connect( self ):
        print("Connection established!!")

    def on_disconnect( self, notice ):
        print("Connection lost!! : ", notice)

    def on_data( self, status ):
        print("Entered on_data()")
        print(status, flush = True)
        return True

    def on_direct_message( self, status ):
        print("Entered on_direct_message()")
        try:
            print(status, flush = True)
            return True
        except BaseException as e:
            print("Failed on_direct_message()", str(e))

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

def main():

    try:
        auth = OAuthHandler(consumer_key, consumer_secret)
        auth.secure = True
        auth.set_access_token(access_token, access_token_secret)

        api = API(auth)

        # If the authentication was successful, you should
        # see the name of the account print out
        print(api.me().name)

        stream = Stream(auth, StdOutListener())

        stream.userstream()

    except BaseException as e:
        print("Error in main()", e)

if __name__ == '__main__':
    main()

我能够成功打印我的名字以及“连接已建立!”的消息。
但是,当我从朋友的账户向自己的账户发送直接消息时,程序没有响应。
不过,当我在自己的账户上发推文时,程序可以正确地打印消息。

我和我的朋友在Twitter上互相关注,所以直接消息权限不应该有问题。

请问有什么正确的方法吗?

如果在Tweepy中无法实现,我也准备使用其他Python库。

我在Windows 7上使用Tweepy 3.3.0和Python 3.4。

3个回答

6
问题描述中提供的代码确实是正确的。
问题是我忘记在更改应用程序权限为“读取、写入和发送消息”后重新生成访问令牌和密钥。

注意:直接消息将在on_data()方法中到达,而不是on_direct_message()方法中。


0
另一个解决方案是不覆盖on_data方法。这就是我在我的情况下让你的代码示例工作的方式。
tweepy.streaming.StreamListener对象的on_data方法包含所有的json数据处理和调用其他方法的操作,例如我们所期望的on_direct_message方法。

0

这是2017年代码的可运行版本

    from twitter import *
import os

import  oauth

#Create a new Twitter app first: https://apps.twitter.com/app/new


APP_KEY,APP_SECRET = 'H3kQtN5PQgRiA0ocRCCjqjt2P', '51UaJFdEally81B7ZXjGHkDoDKTYy430yd1Cb0St5Hb1BVcDfE'
# OAUTH_TOKEN, OAUTH_TOKEN_SECRET = '149655407-TyUPMYjQ8VyLNY5p7jq0aMy8PjtFtd7zkIpDh3ZA', 'IUVpiDpoVmdO75UaHOTinAv5TOsAQmddttNENh9ofYuWO'


MY_TWITTER_CREDS = os.path.expanduser('my_app_credentials')
if not os.path.exists(MY_TWITTER_CREDS):
    oauth_dance("crypto sentiments", APP_KEY, APP_SECRET,
                MY_TWITTER_CREDS)

oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)

auth = OAuth(
    consumer_key=APP_KEY,
    consumer_secret=APP_SECRET,
    token=oauth_token,
    token_secret=oauth_secret
)

twitter_userstream = TwitterStream(auth=auth, domain='userstream.twitter.com')
for msg in twitter_userstream.user():
    if 'direct_message' in msg:
        print (msg['direct_message']['text'])

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接