I have a problem when getting scoped_timeline API.
First, I create a promotable tweet and it is success.
Request
twurl -t -H ads-api.twitter.com -X POST "/0/accounts/18ce54692c5/tweet?status=Welcome to instagram app - https://cards.twitter.com/cards/18ce54692c5/1wdav"
Response
-> "HTTP/1.1 201 Created\r\n"
{ "data_type": "status", "data": { "created_at": "Tue Jun 28 08:40:04 +0000 2016", "id": 747711151362932738, "id_str": "747711151362932738", "text": "Welcome to instagram app - https:\/\/t.co\/mariQ4M3Je", ... "user": { "id": 3265646917, "id_str": "3265646917", .... }, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "scopes": { "followers": false }, "lang": "en" }, "request": { "params": { "status": "Welcome to instagram app - https:\/\/cards.twitter.com\/cards\/18ce54692c5\/1wdav", "account_id": "18ce54692c5" } } }
And then I try to get scoped_timeline API.
Request
twurl -H ads-api.twitter.com "/0/accounts/18ce54692c5/scoped_timeline?scope_to=none"
Response
{"data_type":"status","data":[],"next_cursor":null,"request":{"params":{"account_id":"18ce54692c5"}}}
Not sure why there is no result from this API.
I have also check promotable_users api.
Request
twurl -H "ads-api.twitter.com" "/0/accounts/18ce54692c5/promotable_users"
Response
{"request":{"params":{"account_id":"18ce54692c5"}},"data":[{"user_id":"3265646917","id":"e6uqa","account_id":"18ce54692c5","created_at":"2015-10-05T03:04:09Z","updated_at":"2015-10-05T03:04:09Z","deleted":false,"promotable_user_type":"FULL"}],"data_type":"promotable_user","total_count":1,"next_cursor":null}
Anyone know the possible issue?
I’m sure my tweet is not protected.
