Reputation: 1182
I am using a jquery tweet plugin. I am unable to figure out why the plugin is not fetching any tweets. I see that there are no js errors when I look at the firebug console.
http://www.montereytravelguide.com
The twitter widget in the footer uses the jquery tweet plugin.
I would appreciate any help
Thanks
Upvotes: 0
Views: 1067
Reputation: 55210
Why don't you use Mike Alsup's Twitter plugin instead?
View Demo: jQuery Twitter Search Plugin
Upvotes: 0
Reputation: 3076
It seems your query to twitter returns an empty result :
http://twitter.com/status/user_timeline/montereytravel.json?count=3&callback=jQuery151031489942711777985_1304067889969&_=1304067890328
returns :
jQuery151031489942711777985_1304067889969([]);
First, It seems the correct url should be like :
http://api.twitter.com/1/statuses/user_timeline.json?screen_name=montereytravel
But it requires an authenticated user. I guess your plugin is outdated or misconfigured
Upvotes: 1
Reputation: 10929
Have you included the reuired js file? http://tweet.seaofclouds.com/jquery.tweet.js
Upvotes: 0