Add the latest tweet as clear text on my site?

I have an HTML / CSS site and you want to add my last tweet to the footer, a few notes:

  • I don’t like the look of the available widgets on your website.

  • I just want something that only my last tweet will show as text (only the last, not a few), then I will talk about adding a background and setting fonts via CSS.

  • I'm still new when it comes to website development, so I have no experience with jQuery / javascripts, so if this decision is made by those I really appreciate, if you keep it simple and easy to understand.

I tried following this guide exactly as indicated in the steps, but it did not work, just nothing was shown:

http://www.webdesigndev.com/programming/how-to-display-your-last-tweet-using-javascript-and-the-twitter-api

Maybe this is an outdated method for doing such a thing, I'm not sure I don't want this exact method to work, just everything to get the job done.

Any help would really be appreciated by the guys.

+4
source share
2 answers

This can help you. Go into your editor and replace "with the one that uses the source code that you copy, and replace it with the real one." On all 3 lines

I have a job for me

+1
source

Just add this to your site in the right place:

<div id="twitter_update_list"> <script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script> <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/[yourusername].json?callback=twitterCallback2&count=1β€³></script> </div> 
0
source

All Articles