Ok, here is the twitter API
http:
Can someone give me a hint on how to access this API or link using Meteor
Update ::
Here is the code I tried but not showing any answer
if (Meteor.isClient) { Template.hello.greeting = function () { return "Welcome to HelloWorld"; }; Template.hello.events({ 'click input' : function () { checkTwitter(); } }); Meteor.methods({checkTwitter: function () { this.unblock(); var result = Meteor.http.call("GET", "http://search.twitter.com/search.atom?q=perkytweets"); alert(result.statusCode); }}); } if (Meteor.isServer) { Meteor.startup(function () { }); }
json javascript api meteor twitter
iJade Jan 14 '13 at 14:45 2013-01-14 14:45
source share