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);
});
});