Any way using JavaScript API via iOS? and problem with FQL queries responses.
- by Assaf b
Hi,
I'm developing an iPhone application with FB connect,
the JavaScript API includes really powerful methods like wait.on for combining requests...
Any way using those API methods via iOS and Xcode?
about the FQL responses, I'm using both: request:didReceiveResponse: AND request:didLoad: methods.
all the FQL queries I send provoke didReceiveResponse but not all of them provoke the second one (didLoad).
@"SELECT uid,eid FROM event_member WHERE uid in (select uid2 from friend where uid1=%d limit 100)", userID
when the limit is 1-2 it provokes them all,
when it grows too 100 (friends to fetch) it provokes only the first..
does anyone know this problem?
Thanks!