I'm developing an iPhone iOS app with FB connect.
I'm trying to get a lot of data for each of my friends, and multiple requests are needed.
I wonder if there's a way using batch requests in the iOS SDK?
and the other problem with FQL multi-queries. The following query is working only for a limit of one friend! weird.
SELECT eid FROM event_member WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me() LIMIT 2)
it returns the error The operation couldn’t be completed. (facebookErrDomain error 1.)
According this example of facebook it should have been working.
You can do batch requests with the Facebook iOS SDK, but you need to prepare the JSON requests yourself. Here is an example:
Concerning your other question, I don't know (try to ask other questions in distinct posts so it's easier to follow-up).