@ikono: Thanks for letting us know about this page. We’ll restore it as soon as possible.
In terms of the scoped_to parameter, you can use:
-
followers (default) to find Tweets in the account’s timeline or
-
none to find Promoted-Only Tweets
Here is an example request, scoping the results to just Promoted-Only Tweets:
$ twurl -H ads-api.twitter.com "/1/accounts/18ce54d4x5t/scoped_timeline?scoped_to=none&trim_user=true" | jq
{
"data_type": "status",
"data": [
{
"created_at": "Thu Sep 22 23:32:09 +0000 2016",
"id": 779101005849829400,
"id_str": "779101005849829376",
"text": "hello, @furni",
"truncated": false,
"entities": {
"hashtags": [],
"symbols": [],
"user_mentions": [
{
"screen_name": "furni",
"name": "Furni",
"id": 3805104374,
"id_str": "3805104374",
"indices": [
7,
13
]
}
],
"urls": []
},
"source": {source},
"in_reply_to_status_id": null,
"in_reply_to_status_id_str": null,
"in_reply_to_user_id": null,
"in_reply_to_user_id_str": null,
"in_reply_to_screen_name": null,
"user": {
"id": 756201191646691300,
"id_str": "756201191646691328"
},
"geo": null,
"coordinates": null,
"place": null,
"contributors": [
2417045708
],
"retweet_count": 0,
"favorite_count": 0,
"favorited": false,
"retweeted": false,
"scopes": {
"followers": false
},
"lang": "en"
},
...
],
"next_cursor": null,
"request": {
"params": {
"trim_user": true,
"scoped_to": "none",
"account_id": "18ce54d4x5t"
}
}
}