How to make an API call using meteor
问题 Ok here is the twitter API, http://search.twitter.com/search.atom?q=perkytweets Can any one give me any hint about how to go about calling this API or link using Meteor Update:: Here is the code that i tried but its not showing any response 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