How are you making these calls? Using what library / language?
i tried:
twurl "/2/tweets?ids=1260294888811347969&tweet.fields=attachments,author_id,created_at,public_metrics&expansions=attachments.media_keys&media.fields=public_metrics,preview_image_url"
and got:
{
"data": [
{
"author_id": "783214",
"id": "1260294888811347969",
"attachments": {
"media_keys": [
"13_1260294804770041858"
]
},
"text": "Don’t miss the Tweets about your Tweet. \n\nNow on iOS, you can see Retweets with comments all in one place. https://t.co/oanjZfzC6y",
"public_metrics": {
"retweet_count": 4867,
"reply_count": 1691,
"like_count": 15862,
"quote_count": 3210
},
"created_at": "2020-05-12T19:44:51.000Z"
}
],
"includes": {
"media": [
{
"media_key": "13_1260294804770041858",
"preview_image_url": "https://pbs.twimg.com/media/EX13hQKXQAIPJZc.jpg",
"public_metrics": {
"view_count": 1590078
},
"type": "video"
}
]
}
}
twurl "/2/tweets?ids=1420972569855934464&tweet.fields=attachments,author_id,created_at,public_metrics&expansions=attachments.media_keys&media.fields=public_metrics,preview_image_url"
and i got back:
{
"data": [
{
"created_at": "2021-07-30T05:00:35.000Z",
"author_id": "263874598",
"public_metrics": {
"retweet_count": 325,
"reply_count": 21,
"like_count": 571,
"quote_count": 55
},
"text": "After looking over the @CDCgov slide set released by @washingtonpost, this slide really sets the stage. We are dealing with a strain that is in a class of its own now. It’s one of the most transmissible respiratory viruses we have ever seen…in history. 🧵 https://t.co/MvggUZCVmZ",
"attachments": {
"media_keys": [
"3_1420972565204439044"
]
},
"id": "1420972569855934464"
}
],
"includes": {
"media": [
{
"media_key": "3_1420972565204439044",
"type": "photo"
}
]
}
}
which is all the expected fields - which ones are you missing? (there are no urls returned for videos btw, this is an API limitation currently)