I have just put implemented Facebook connect on my web-site using the JavaScript SDK. Now I would like to process 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
PHP:
$app_id = 'MY_ID';
$app_secret = 'MY_APP_SECRET';
$my_url = 'POST_AUTH_URL';
$code = $_REQUEST["code"];
$_REQUEST["code"]
is quite normally not recognized and I don't know what is the "'POST_AUTH_URL'
" because I didn't use the PHP SDK to process the Facebook-connect. Does anyone have an idea?