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