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.

Let's say i have a small application/webpage on which i want the facebook users to enter comments to the post.

I have to register my app, get the app_id, and inject some code in the application page.

Now, lets say the user is logged on to facebook, and he comes on my site, and he clicks on login, and gets automatically logged on to facebook, and can post comments.

My question is how does that work?

I am assuming the facebook javascript SDK makes a call to facebook server which checks if there is any user which is logged in to current browser and will pass the data for that user. Is that call a redirect and not a separate call as cookies are not visible in the new call?

But i see that the redirect does not happen. Then, how does facebook prevent giving user data to some other site which can also ask for the same data. Does it only check 'Referrer' header because that can be tampered with?

How does facebook make sure while returning user data, that the request is coming from a real website which has registered for it?

Thanks

Tuco

share|improve this question
this question has nothing to do with code – charlietfl Nov 5 '12 at 5:28

closed as off topic by charlietfl, Aleks G, Florent, finnw, Jan Hančič Nov 5 '12 at 11:59

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

I am assuming the facebook javascript SDK makes a call to facebook server which checks if there is any user which is logged in to current browser and will pass the data for that user.

Correct.

Is that call a redirect and not a separate call as cookies are not visible in the new call?

But i see that the redirect does not happen.

No, it’s a background request, not a redirect. And a cross-domain request at that, because the cookies set for facebook.com are only accessible to scripts running under that domain.

Then, how does facebook prevent giving user data to some other site which can also ask for the same data. Does it only check 'Referrer' header because that can be tampered with?

How does facebook make sure while returning user data, that the request is coming from a real website which has registered for it?

Your app id is tied to a certain website – and only if domain and app id match, Facebook will return the requested data.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.