Any way using JavaScript API via iOS? and problem with FQL queries responses.
Posted
by
Assaf b
on Stack Overflow
See other posts from Stack Overflow
or by Assaf b
Published on 2011-03-11T16:08:16Z
Indexed on
2011/03/11
16:10 UTC
Read the original article
Hit count: 293
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!
© Stack Overflow or respective owner