Here are my params for getting tweets.
params_v2 = {
"tweet.fields": "id,text,attachments,author_id,context_annotations,created_at,entities,in_reply_to_user_id,lang,public_metrics,referenced_tweets,reply_settings,source",
"expansions": "author_id,referenced_tweets.id,referenced_tweets.id.author_id,attachments.media_keys",
"media.fields": "duration_ms,height,media_key,preview_image_url,type,url,width,public_metrics",
"user.fields": "created_at,location,profile_image_url,public_metrics,url,verified,description,entities,pinned_tweet_id",
}
I am getting main tweets responses in data and referenced tweet in includes.tweet. But how can I get the tweet that a referenced tweet is referring to?
Ex:
this is referenced tweet and this tweet itself points to another tweet, how can I get that tweet? Do I need to fetch the tweet again?