I am considering facebook login for my site. Based on facebook based authentication, the user will be logged in to the site. And will continue to use it until he/she logs out from the site, irrespective of facebook login status. Like most of the other sites.
While looking into the FB's client-side login method, I notice that it's based on the signed_request data received from the fbsr_{app_id} cookie. And FB want's that to be exchanged for a valid short-lived access_token within 10 mins of it's issue, to validate the authentication request. (This 10 mins seems to be the best effort by FB to minimize the security hole.)
However, within this 10 mins, someone else can copy the cookie and without much difficulty, can make a successful attempt to login as the victim. This is a concern for me and would like to ask the following questions:
Am I missing something here regarding the security aspects of FB's client-side authentication or it indeed has this weakness?
Is there something I can do in my implementation to plug the gap, or is moving to FB's server-side authentication the only answer?