Reputation: 2019
I can't find anywhere how can I get the tweet's ID after it's being posted from my website (button)
is there a non-deprecated way?
is there any way? php? js?
do I have to create twitter app?
is it possible through any of new (1.1) twitter apis
I want to store the ID so I can monitor the favs and retweets later
Upvotes: 0
Views: 475
Reputation: 708
I assume you are using the Twitter API? When you do a POST
to https://api.twitter.com/1.1/statuses/update.json
, the response will contain the tweet id as id
This is the documentation https://dev.twitter.com/docs/api/1.1/post/statuses/update
Upvotes: 1