Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter Api: get tweets with links

Tags:

twitter

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.

like image 940
Tiddo Avatar asked Jul 08 '11 15:07

Tiddo


People also ask

Is Twitter API legal?

The use of the Twitter API and developer products to create spam, or engage in any form of platform manipulation, is prohibited. You should review the Twitter Rules on platform manipulation and spam, and ensure that your service does not, and does not enable people to, violate our policies.

Can you get old tweets from Twitter API?

Twitter Official API has the bother limitation of time constraints, you can't get older tweets than a week.


1 Answers

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

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

like image 61
westo Avatar answered Sep 22 '22 12:09

westo