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'm building a website on which tweets from a certain user should be displayed. I know how to display the tweets using the user_timeline function from the twitter api, but these tweets are raw text tweets. Is there also a method to get the tweets in html with all the links already there? I couldn't find one myself but perhaps you do know one.

share|improve this question

2 Answers

up vote 2 down vote accepted

You need to use Tweet Entities. See the Twitter API documentation for more information.

https://dev.twitter.com/docs/tweet-entities

share|improve this answer
can we add include_entities=true, as true parameter in twitter.getUserTimeline method, or any else ? – Abdul Wahab Apr 17 at 10:19

Use this helper function by Dustin Diaz to make a tweet fetched programmatically to look as it would on Twitter.

Update: Here is a complete code sample that makes use of the above function.

share|improve this answer
Link to this blog post looks promising, but the link within the post to actually download the source of what he's talking about are broken. – Mick Byrne Jun 7 '12 at 6:57
@MickByrne I updated my answer with a link to a code sample that uses this helper function & has the source. – mvark Jun 7 '12 at 12:14
Your link to the twitter widget is missing dustindiaz.com/basement/ify.html – drogon Nov 13 '12 at 1:20

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.