Search code examples
twitter

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?


Solution

  • 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