There are a number of web applications which allow commenting through facebook login.
Facebook provides an app key, and probably an app secret for that application.
If the user is logged in through facebook, he automatically gets logged in to that site on facebook for comments.
I want to understand how does he automatically gets logged in for commenting on that site.
The application abc.com sends a call from the browser, with the app key, and finally somehow, facebook sends the application, the details about that user.
The application does not make a server to server call, but just makes a browser to server call.
However, the app key is not a secret, so, anybody can view anybody else's app key.
Now, assume that someone deploys a local server, maps his host server to abc.com, using the hosts file, uses abc.com's API key, and makes a call to facebook to see whether the user is logged in.
I am assuming facebook will somehow redirect the request to abc.com with the details about the user. That means if the user writes appropriate servlet in the application, he can get the call from facebook with the user details.
Isn't that inappropriate? How does FB avoid it?
Thanks
Tuco