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'm trying to extract the facebook user education info, but I'm only able to get the type of school and the school name fields.

In Javascript, I retrieve the FQL info into a var named rows.

Then I'm trying to retrieve the education detail:

    var edCount = rows[0].education ? Math.min(10, rows[0].education.length) : 0;
    var education = "";
    for (var i=0; i<edCount; i++) {
        education += rows[0].education[i].type + ": " + rows[0].education[i].school.name + "\n";
    }

The other data I'm trying to get is:

  • start year
  • end year
  • degree
  • whether they graduated or not (graduated field)

Is this doable?

I'm retrieving the data using the standard API calls available to me. For example:

var query =  FB.Data.query('select username,first_name,last_name,pic,current_location,work_history from user where uid={0}', response.id);
query.wait(function(rows) {
      document.forms[0].username.value = rows[0].username;

I am able to retrieve all of the variables, and even access some of the properties of the education type, but I can't seem to find how to get to the other properties like start year, degree, etc.

share|improve this question
1  
You have not shown us how you are retrieving the data at all (just how you are working on it with JS after you’ve got it). – CBroe Sep 22 '12 at 13:19
CBroe: I added more info to my original post. Thanks. – Hani Helou Sep 25 '12 at 13:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.