Hi there
Im trying to fetch the timeline for a user, authentication is done through OAuth1.0a and I can successfully retrieve the results.
When I include the following query parameters everythings works fine and I receive my 30 tweets as expected.
max_results = 30
tweet.fields = created_at, public_metrics, referenced_tweets
The problems start to occur when I add the non_public_metrics. So I change the query parameters to
max_results = 30
tweet.fields = created_at, public_metrics, referenced_tweets, non_public_metrics
Now I only get like 28 or 29 results. When I compare the results side by side I notice that the retweets are missing. (The ones with referenced_tweets->type = retweeted). The documentation doesn’t state anything about non_public_metrics not being available for retweets. And even if they are not available/missing, the whole tweet shoudn’t dissapear, only the attribute should be empty.
How can I make the call including all fields and tweets?
Kind regards
I figured that I have the same issue here.