So with Trigger.io's facebook.api function this works fine:
forge.facebook.api('me', function (data) {
console.log(data)
})
Which is nearly identical to how you'd do it with FB.api.
But this example returns nothing:
forge.facebook.api({
method: 'fql.query',
query: 'SELECT uid, first_name, last_name FROM user WHERE uid = me()'
},
function(data) {
console.log(data)
})
Does Trigger.io support FQL?
forge.facebookequal to the facebook js sdk. So it's probably literally the Facebook SDK you're actually using, just under aforge.facebookrather thanFB– Tommy Crush Dec 30 '12 at 16:14