我正在使用phonegap facebook插件(https://github.com/phonegap/phonegap-facebook-plugin)。
当我调用make fql查询时,它永远不会返回。例如
FB.api(
{
method: 'fql.query',
query: 'Select uid FROM user where uid=me()'
},
function(response) { alert("ok");}
); (I don't get the alert)
然而,当我定期打电话时,一切正常。例如
FB.api("/me",
function(response) { alert("ok");}
); (alert executes successful )
有什么想法吗?
答案 0 :(得分:0)
原来这是在cordova / phonegap中进行fql调用的正确方法
FB.api(“fql”,{q:query}, function(response){alert(“lalal”);});
从这里得到它:https://github.com/mgcrea/cordova-facebook-connect/issues/23