I'm using the phonegap facebook plugin (https://github.com/phonegap/phonegap-facebook-plugin).
When I call make a fql query, it never returns. For example
FB.api(
{
method: 'fql.query',
query: 'Select uid FROM user where uid=me()'
},
function(response) { alert("ok");}
); (I don't get the alert)
However, when I make a regular api call, everything works fine. For example
FB.api("/me",
function(response) { alert("ok");}
); (alert executes successful )
Any ideas?