为什么状态“不可订阅”以及如何修复它?Python Tweepy

pig*_*ger 1 python api twitter tweepy twitterapi-python

当有人用我的@handle回复该推文时,我尝试使用下面编写的代码来获取推文中视频的媒体网址:

import tweepy
from tweepy import Stream
from tweepy.streaming import StreamListener
import json

class StdOutListener(StreamListener):
    def on_data(self, data):
        clean_data = json.loads(data)
        tweetId = clean_data['id']
        tweet_name = clean_data['user']['screen_name']
auth = tweepy.OAuthHandler("consumer_key", "consumer_secret")
            auth.set_access_token("access_token", "access_token_secret")
            api = tweepy.API(auth)
            mediaupload_id = clean_data['in_reply_to_status_id']
            origtweet_media = api.get_status(mediaupload_id)
            print()
            print(origtweet_media)
            native_media = origtweet_media['extended_entities']['media'][0]['video_info']
            tweet_media = native_media['variants'][0]['url']
            print(tweet_media)

def setUpAuth():
    auth = tweepy.OAuthHandler("consumer_key", "consumer_secret")
    auth.set_access_token("access_token", "access_token_secret")
    api = tweepy.API(auth)
    return api, auth

def followStream():
    api, auth = setUpAuth()
    listener = StdOutListener()
    stream = Stream(auth, listener)
    stream.filter(track=["@YOUR_TWITTER_HANDLE"], is_async=True)

if __name__ == "__main__":
    followStream()
Run Code Online (Sandbox Code Playgroud)

一切似乎都设置得很好,但是当我运行代码,并且有人回复带有视频的推文(回复的人提到我的@handle)时,我收到此错误:

Exception has occurred: TypeError
'Status' object is not subscriptable
    native_media = origtweet_media['extended_entities']['media'][0]['video_info']
Run Code Online (Sandbox Code Playgroud)

为什么“状态”不可订阅?有没有办法解决这个问题,以便它成功获取视频网址 ( tweet_media)?

有人请帮助我!

pig*_*ger 7

解决了!

仔细查看了print编辑后origtweet_media,我注意到推文信息就在里面_json=()。所以我添加._json到了 as 的末尾,origtweet_media = api.get_status(mediaupload_id)这只是隔离了 json 部分,让我可以找到tweet_media. 新更新的线路如下所示:

origtweet_media = api.get_status(mediaupload_id)._json
Run Code Online (Sandbox Code Playgroud)

然后就成功了!