获取转推的最新 tweet/retweet 和全文 (Twitter API v2)

Getting the latest tweet/retweet and full text of the retweet (Twitter API v2)

我试图通过附加我所有的推文来获得最新的 tweet/retweet,但我无法获得转推的全文。

tweets = client.get_users_tweets(
    id='xxxxxxxxxxx',
    tweet_fields=['text']
)

data = []
for tweet in tweets.data:
    data.append(tweet)

print(data[0])

转推:

由于您使用的是 v2,因此您需要将 expansions=referenced_tweets.id 参数添加到您的请求中,并匹配返回的包含对象中的数据以从转推中获取原始推文的文本.

中有一个如何执行此操作的示例