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 want to create a very basic C# application that can fetch publicly-available information for Facebook user profiles. I've read a few pages of Graph API but there is a problem. Here you can see a user profile that contains all sort of information for public:

http://tr-tr.facebook.com/people/A-Altan-Yurt/100002356385895

However I cannot get all of these information, using the Graph API with this link:

https://graph.facebook.com/100002356385895

I tried scraping the page but the returned document doesn't contain any useful information. Since all these info are public, I don't think there should be an access limit for them. What am I doing wrong here?

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, even public accessible data can not just be fetched outside of the facebook interface.

In order to get the data you'll need a valid access token, for example if you try the url for the same user's feed you'll get:

{
   "error": {
      "message": "An access token is required to request this resource.",
      "type": "OAuthException",
      "code": 104
   }
}

You can try this same url with the Graph API Explorer, and after you authorize this app, it will have an access token and you'll get the public feed of that user.

The access token used there (in the API Explorer) is an app access token, which is probably the easiest token to get, here's the doc about Authenticating as an App. Once you get an access token you can start querying the graph api and get the public data.

You can do it with other access token types, such as a user token.


Edit

Even when things are public for users on facebook, they are not public for applications and you will need to ask for the right permissions for let's say the education (user_education_history).

You can see exactly which permission you need for each field in the documentation of the User object, in the fields table the 3rd column is titled Permissions and there you'll see what you need per field.

share|improve this answer
Thanks, but there is still a problem. I cannot get the information I want even with the access token. I removed the /feed part from the Graph API Explorer link you posted but the returned JSON object was pretty much the same one without the access token. Could you please describe how can I get the information like the interests, education, etc? Thanks. – Alireza Noori Apr 15 '12 at 22:12
Oh, I see. I edited my answer – Nitzan Tomer Apr 15 '12 at 22:24
OK, I see. Forgive me but I'm still a little confused. For getting the education info (and the user_education_history permission), can I do it without the user's permission or should I show a permission dialog (from Facebook) and ask every single user to let my app get these info? (Which would be pretty useless for any app I guess! Especially if it's public) – Alireza Noori Apr 15 '12 at 22:40
What I'm asking is this: If there is ANY way to get these information (education, likes, music, etc.) please let me know. – Alireza Noori Apr 15 '12 at 22:42
Yes, you have to ask for the user_education_history permission in order to get the education field, even though it's public. There's no way around it, and this limitation is there so that users have some sort of privacy. You see, the fact that I, as a user, decided that other users will be able to see my education info does not mean that I want any app to get that and store it on its' database. So, no, there's no way yo get that with out asking for the permissions. – Nitzan Tomer Apr 15 '12 at 22:55
show 1 more comment

To get the public profile picture, you can use this approach: http://www.codereverie.com/2012/10/get-facebook-public-profile-image-url.html

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.