I am building an app in which I need to read education and work history of all people(if it is not hidden by privacy settings) in a facebook group(public group). People in the group need not necessarily be friends of the user logged in to my app.
I know how to get the facebook IDs of all people who are part of the group but am unable to retrieve the education/work history of some people even though it is made visible to everyone on facebook.
For eg: when I visited the profile page of a person on the group(who is not my friend), I was able to see his eduaction/work info. However, when I query through rest API or graph API or FQL, I get a null value!!
I have tried the following:
1) https://graph.facebook.com/UID
I tried the above by a generating an access token too, still got only a null value
2) https://api.facebook.com/method/users.getInfo?uids=UID&fields=education_history
This is the JSON response I get: [ { "education_history": null } ]
I would greatly appreciate for any help on how I can read this information.