Tom Kincaid
Tom Kincaid

Reputation: 4975

Getting photos from Twitter statuses/user_timeline

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?

Upvotes: 8

Views: 7981

Answers (1)

Derek Springer
Derek Springer

Reputation: 2716

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

Upvotes: 7

Related Questions