Twitter feed (not) loading…
If like Ohh la la you have a customised Twitter feed on your website, you may want to check that it’s still displaying all your tweets – and not the following message: Twitter Feed Loading…
You may be disappointed if you search Twitter twitter account for a solution. Despite introducing some changes that are affecting your feed, Twitter doesn’t appear to have been communicating to help resolve the issue.
Take a look at the script fix our brilliant web developer has come up with instead. It’s simple and will ensure the customised Twitter feed loads again correctly on your website.
BEFORE
<script type=”text/javascript” src=”http://twitter.com/statuses/user_timeline/ohh_la_la.json?callback=twitterCallback2&count=1″></script>
AFTER
<script type=”text/javascript” src=”http://api.twitter.com/1/statuses/user_timeline/ohh_la_la.json?callback=twitterCallback2&count=1″></script>
In short to resolve the issue on your website, you need to make 2 small changes to your script:
1) The url http://twitter.com needs to change to http://api.twitter.com
2) And after the .com/ we now have a 1 inserted before the /statuses
We hope this helps. Let us know how you get on!
Category: Website | Tags: API, Twitter, Website Comments Off on Twitter feed (not) loading…