I'm currently implementing the Javascript Facebook login API.
Based on the callback response from Facebook, this client side script then sends a request with query string parameters to a URL on our site. Based on the email in that URL, the client is authenticated.
This is not secure. No other token that we can verify against is returned from Facebook (as far as I know), and we are expected to log the user in based on an email in a query string parameter, and no password.
I'd like to add another query string parameter that gives us some sort of assurance that the query string data came from a JavaScript redirect following the response from Facebook.
I'm thinking that this should be some sort of hashed value created by a client script that I can compare against server side. However, every resource used to create this secret key would be available to an attacker, via client cookies or through inspecting the client script.
Is there a common and secure approach to this problem that I can use?
