Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :

  1. Is it possible using only JavaScript fql as "SELECT id, name FROM user where uid IN (SELECT uid1 FROM friends WHERE uid2=me())" ?

  2. 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 ?

share|improve this question

2 Answers

up vote 12 down vote accepted

Using method: 'fql.query' is part of the deprecated REST API.

A better, future-proof way IMHO is to send your queries against the Graph API:

FB.api("/fql?q={your urlencoded query}", callback() { … } );
share|improve this answer
+1 Indeed it would be preferable to stay away from API's in the process of deprecation. – Lix Jun 12 '12 at 14:19
Thanks for this precision ! – Newben Jun 12 '12 at 22:09
I know that this is ole but can you provide the link for this. – Akshat Jiwan Sharma Oct 7 '12 at 17:00

Using the JavaScript SDK you can easily execute an FQL query -

FB.api(
  {
    method: 'fql.query',
    query: 'SELECT name FROM user WHERE uid=me()'
  },
  function(response) {
    alert('Your name is ' + response[0].name);
  }
);

Don't forget to request all the permissions you need before executing any queries...


Reference - https://developers.facebook.com/docs/reference/javascript/

share|improve this answer
OK thanks a lot. I didn't knew about this ! – Newben Jun 12 '12 at 13:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.