828
828

Reputation: 1180

How can you link to a Twitter status with just the mention id?

The format to view a status is:

http://twitter.com/<screen_name>/status/<mention_id>

Is there an alternate that does not require the screen name (or alternatively uses the user_id)?

Upvotes: 3

Views: 2002

Answers (1)

Chris McFarland
Chris McFarland

Reputation: 6169

You can replace the screenname with the user ID and it will work. These two are the same:
http://twitter.com/35943456/status/4831830029115392
http://twitter.com/NZGamerdotcom/status/4831830029115392

If you just want the raw data fields for the status, either of these will work:
http://twitter.com/statuses/show/4831830029115392.json
http://twitter.com/statuses/show/4831830029115392.xml

Upvotes: 5

Related Questions