Reputation:
Can I fetch the tweet from Twitter if I know the tweet's id?
Upvotes: 66
Views: 89768
Reputation: 3737
You don't need to use the API or know the user account.
Just drop it into the following URL format, where XXXXXXXXX is the tweet id.
https://twitter.com/i/web/status/XXXXXXXXX
Upvotes: 10
Reputation: 2248
@Adjam & @Gibron
You can use any user name and the url will redirect to the correct twitter handle.
For instance, if I go to:
twitter.com/anyuser/status/541278904204668929
The link redirects to:
https://twitter.com/MarkTabNet/status/541278904204668929
Upvotes: 104
Reputation: 12935
we could test twitter api in https://apigee.com/console/twitter
https://api.twitter.com/1.1/statuses/show/335393046625652736.json
Upvotes: 0
Reputation: 4851
https://api.twitter.com/1/statuses/show/id.json
Example: https://api.twitter.com/1/statuses/show/130022282960715776.json
Upvotes: 3
Reputation: 45
yes we can fetch by https://dev.twitter.com/docs/api/1/get/statuses/show/%3Aid , if will fetch the status of the single id..
Upvotes: 4
Reputation: 12220
http://search.twitter.com/search.json?rpp=50?q=from:{twittername}
Upvotes: 1