简体   繁体   English

使用 Tweepy 检索特定对话

[英]Retrieving specific conversations using Tweepy

I have been trying to retrieve conversation threads using Tweepy, and although the functionality has been added to the Twitter api (conversation_id is an optional parameter), it has not been added to Tweepy.我一直在尝试使用 Tweepy 检索对话线程,虽然该功能已添加到 Twitter api(conversation_id 是可选参数)中,但尚未添加到 Tweepy。 I was wondering if anyone was familiar enough with Tweepy that they might know a way to achieve this?我想知道是否有人对 Tweepy 足够熟悉以至于他们可能知道实现这一目标的方法?

Here is my code to get the conversation_id and also to download the conversations.这是我获取对话 ID 并下载对话的代码。 Hopefully it helps people with similar issues.希望它可以帮助有类似问题的人。 I have only included the required functions not the whole files, so I haven't listed the modules required like requests and base64, but they should be quite obvious.我只包含了所需的功能而不是整个文件,所以我没有列出请求和base64等所需的模块,但它们应该很明显。

The code to get the bearer token and create the header I got from here with the Twitter API - how can I get authentication for the engagement endpoint using a bearer token but I reposted below for convenience获取不记名令牌并创建 header 的代码我从这里得到的 Twitter API 我如何使用不记名令牌重新发布参与端点的身份验证,但为了方便起见,我在下面重新发布

# returns a bearer_header to attach to requests to the Twitter api v2 enpoints which are 
# not yet supported by tweepy 
def get_bearer_header():
   uri_token_endpoint = 'https://api.twitter.com/oauth2/token'
   key_secret = f"{twitter_creds.consumer_key}:{twitter_creds.consumer_key_secret}".encode('ascii')
   b64_encoded_key = base64.b64encode(key_secret)
   b64_encoded_key = b64_encoded_key.decode('ascii')

   auth_headers = {
       'Authorization': 'Basic {}'.format(b64_encoded_key),
       'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
       }

   auth_data = {
       'grant_type': 'client_credentials'
       }

   auth_resp = requests.post(uri_token_endpoint, headers=auth_headers, data=auth_data)
   bearer_token = auth_resp.json()['access_token']

   bearer_header = {
       'Accept-Encoding': 'gzip',
       'Authorization': 'Bearer {}'.format(bearer_token),
       'oauth_consumer_key': twitter_creds.consumer_key 
   }
   return bearer_header

# Returns the conversation_id of a tweet from v2 endpoint using the tweet id
def getConversationId(id):
   uri = 'https://api.twitter.com/2/tweets?'

   params = {
       'ids':id,
       'tweet.fields':'conversation_id'
   }
   
   bearer_header = get_bearer_header()
   resp = requests.get(uri, headers=bearer_header, params=params)
   return resp.json()['data'][0]['conversation_id']

# Returns a conversation from the v2 enpoint  of type [<original_tweet_text>, <[replies]>]
def getConversation(conversation_id):
   uri = 'https://api.twitter.com/2/tweets/search/recent?'

   params = {'query': f'conversation_id:{conversation_id}',
       'tweet.fields': 'in_reply_to_user_id', 
       'tweet.fields':'conversation_id'
   }
   
   bearer_header = twitter_auth.get_bearer_header()
   resp = requests.get(uri, headers=bearer_header, params=params)
   return resp.json()

Tweepy does not support v2 of the API yet, although there are plans for this in the coming year . Tweepy 尚不支持 API 的 v2 版本,尽管在来年有此计划

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM