arjunurs
arjunurs

Reputation: 1182

jQuery tweet plugin does not fetch tweets

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

Answers (3)

codeandcloud
codeandcloud

Reputation: 55210

Why don't you use Mike Alsup's Twitter plugin instead?
View Demo: jQuery Twitter Search Plugin

Upvotes: 0

dwarfy
dwarfy

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

suhair
suhair

Reputation: 10929

Have you included the reuired js file? http://tweet.seaofclouds.com/jquery.tweet.js

Upvotes: 0

Related Questions