Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
This is unclear. Can you clarify what you need? – Mob Oct 4 '11 at 22:15

1 Answer

up vote 4 down vote accepted

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

share|improve this answer
This works for images uploaded via the web. Thanks. Looks like the android app is doing it differently and those images aren't exposed in the entities. – Tom Kincaid Oct 12 '11 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.