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.

Hi we've implemented the following code

INIT block (WORKS)

FB.init({
    appId: 'apiID',
    status: true, // check login status
    cookie: true, // enable cookies to allow the server to access the session
    oauth: true,  // enable OAuth 2.0
    xfbml: true,   // parse XFBML
    frictionlessRequests: true
});

LOGIN block (WORKS)

FB.login(function(response) {
    if (response.authResponse) {
      console.log('User logged and fully authorize the app.');

    } else {
      console.log('User cancelled login or did not fully authorize.');
    }
  }, {scope: 'email,user_location,friends_location'});

DATA RETRIEVE block (DON'T WORK)

var friends = FB.Data.query('SELECT uid, name, location FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me() ORDER BY rand() LIMIT 15) AND has_added_app=0');

FB.Data.waitOn([friends], function() {
  FB.Array.forEach(friends.value, function(row) {
      console.log(row);
  });
});

The last problem does not occur for "SELECT uid, name FROM user ...".

Does anyone get an idea of the DB scheme of the facebook's "user" and "friend" tables? Other tables which can be accessed by "FB.Data.query"?

Thank you!

EDIT

CORRECT DATA RETRIEVE block (WORKs)

var friends = FB.Data.query('SELECT uid, name, hometown_location, current_location FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me() ORDER BY rand() LIMIT 15) AND has_added_app=0');

FB.Data.waitOn([friends], function() {
  FB.Array.forEach(friends.value, function(row) {
      console.log(row);
  });
});
share|improve this question

1 Answer

up vote 1 down vote accepted

The specification for the Facebook Query Language (FQL) is available with the rest of the Facebook developer documentation, including schemas for the user and friend tables.

share|improve this answer
Thank you brother, you saved me. Really no way to find it on facebook developers! – Igor Nov 9 '11 at 22:23

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.