I'm trying to get some data about myself (logged in) through the facebook.php API.
This works:
SELECT name FROM user WHERE sex='female' AND uid IN ( SELECT uid2 FROM friend WHERE uid1= me() )
This doesn't work: [gives "Exception: 1: An unknown error occurred"]
SELECT eid, name, location, start_time, pic_big, host, description
FROM event
WHERE eid IN (
SELECT eid
FROM event_member
WHERE uid = me()
)
I have the following permissions setup:

"Exception: 1: An unknown error occurred"– Haroldo Feb 8 '11 at 11:37Exception 1is causing this :) ok. – misterjinx Feb 8 '11 at 11:38