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.

I tried using twitter api on php, which is very basic pulling of public tweets. Now I am in the process of learning it on java and android with a twist which my code should pull or process tweets that has image or videos on it. I read the documentations of twitter api and searched for quite of time now, but so far I couldn't find good documentations, tutorials or examples on it.

Do you have any ideas how to do it? Or sample codes which you can share?

Thanks.

share|improve this question

closed as not a real question by Brian Roach, Perception, assylias, Sean Owen, Bill the Lizard Feb 17 at 14:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

Get all tweets of your request, decode the redirector links (such as bit.ly) to get the actual links and then check for the domain (such as youtube.com or instagram.com). If you just want to show the tweet, you're fine but actually getting the image that the link points to is harder because you need to implement it for every single imagehoster you want to support.

To access to Twitter you can use Twitter4j. As far as I know it is not possible to get native media previews with Twitter4j (but you can use the links as described above).

share|improve this answer
Thank you for this. :-) – Arman Feb 17 at 4:31

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