Twitter Api: Receive Tweets with Links

I am creating a website on which tweets from a specific user should be displayed. I know how to display tweets using the user_timeline function from twitter api, but these tweets are raw text tweets. Is there a way to get tweets in html with all the links already there? I could not find him myself, but perhaps you know him.

+7
source share
2 answers

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

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

+3
source

Use this helper function of Dustin Diaz to make a tweet programmed to look like on Twitter.

Update: Here is a complete code example that uses the above function .

+2
source

All Articles