Anyone had luck with doing multiquery through javascript API or ajax?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I have successfully done this, although I had a bit of trouble at first with the documentation only having a php example.
Just make sure you are attaching the queries
json as the 2nd parameter in the api call rather than as a query string like in the php sample. That is:
FB.api('/fql', {q:{"query1":"SELECT uid, rsvp_status FROM event_member WHERE eid=12345678","query2":"SELECT name, url, pic FROM profile WHERE id IN (SELECT uid FROM #query1)"}},
function(response) {
// handle response
});