pankaj
pankaj

Reputation:

Can I fetch the tweet from Twitter if I know the tweet's id?

Can I fetch the tweet from Twitter if I know the tweet's id?

Upvotes: 66

Views: 89768

Answers (8)

aaronbauman
aaronbauman

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

datalifenyc
datalifenyc

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

diyism
diyism

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

Shoban
Shoban

Reputation: 23016

Yes you can. Check out Twitter's API documentation

Upvotes: 6

Syed Sami ul Ahbab
Syed Sami ul Ahbab

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

Andrea Balducci
Andrea Balducci

Reputation: 2852

Just look at the public API.

Upvotes: -1

Nick Allen
Nick Allen

Reputation: 12220

http://search.twitter.com/search.json?rpp=50?q=from:{twittername}

Upvotes: 1

Related Questions