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.