I have just put implemented Facebook connect on my web-site using the JavaScript SDK. Now I would like to proceed an fql query.
So I have two questions :
Is it possible using only JavaScript fql as "
SELECT id, name FROM user where uid IN (SELECT uid1 FROM friends WHERE uid2=me())" ?Because when I tried some PHP SDK code using the facebook doc,
$app_id = 'MY_ID'; $app_secret = 'MY_APP_SECRET'; $my_url = 'POST_AUTH_URL'; $code = $_REQUEST["code"];
$_REQUEST["code"] is quite normally not recopgnized and I don't know what is the "POST_AUTH_URL'" because I didn't use the PHP SDK to proceed to the Facebook-connect. Does anyone has an idea ?