List the last 5 tweets with jquery

0

I need to list the last 5 tweets of a Twitter user, and I need only the text and date appear. I'm trying for the widget of Twitter itself, but it's very complicated. Would anyone else have a solution for this?

    
asked by anonymous 14.11.2014 / 20:03

1 answer

1

You can use an embedded timeline, which is just a javascript code that generates the timeline on your site. See more: link

The alternative is to use the Twitter API, but there is no way to access it directly from the javascript because it uses OAuth authentication. If there is the option to do it from your backend and access the result directly from your server, then you can decide how it will be presented. To do so, see: link

    
17.11.2014 / 16:26