Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting photos from Twitter statuses/user_timeline

Tags:

twitter

Using the Twitter API, I can get all the user's Tweets with location information. If they use a mobile app and attach photos, how can I get this from the API?

like image 609
Tom Kincaid Avatar asked Oct 04 '11 22:10

Tom Kincaid


1 Answers

First of all, you need to include include_entities=true as part of the request:

i.e. https://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitter&include_entities=true

Then, look for any media_url elements; those will contain the URL to any photos. It may contain video links, so you'll have to filter for common image types (.png/.jpg/.gif/etc).

See: Tweet Entities

like image 184
Derek Springer Avatar answered Oct 04 '22 16:10

Derek Springer