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 am developing an app to fetch my friends work history and education from facebook

For some of my friends

    graph.facebook.com/me/friends?fields=name,work&.........

gives details about their employers

For a friend xyz I get only the name while using the above url. But when I try

    graph.facebook.com/xyz?fields=name,work

I get his work details also.

What is the difference between these two urls?

share|improve this question

2 Answers

The first URI, https://graph.facebook.com/me/friends?fields=name,work, returns information about the current logged-in user's friends. Depending on the permissions given by that user (the person using your application) to your application, you may or may not be able to get their friends' work information (or any other detail that you're requesting).

The second URI, https://graph.facebook.com/xyz?fields=name,work, returns information about a specific user (in your case, xyz). Whether or not you can do this is also dependent on if that information is public or authorized for the access token of your application I believe.

Try exploring the Facebook Graph using the Graph API Explorer.

share|improve this answer
I pass my access token(with permissions for friends_work) to the app and xyz is my friend, Why these two uris behave differently? I tried Graph API Explorer also, no use but – Kalyana Sundaram Jan 22 at 15:06
@KalyanaSundaram that might be because he might have privacy settings restricting access – Anvesh Saxena Jan 24 at 7:41

May be your friend xyz1 have set privacy on work history,thats why you are not getting it

share|improve this answer

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.