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?
Got it: