So I\'ve been using the twitter API w/MeteorJS and what I\'m attempting to do is just display the screen name of the twitter user on the browser. This is what I have done so
You need to place a function inside the call to be able to get the return.
Meteor.call(
'screenName',
function(error, result){
if(error){
console.log(error);
} else {
console.log(result);
}
}
);
You can read more in the documentation about the call function: http://docs.meteor.com/#/full/meteor_call