I'm trying to build an web application that facebook authentication so that don't have to build my own. So after facebook authenticates them and provides me with their user_id, I can simply store this in their database.
Obviously, I'd like to protect my users from being spoofed purely by using their user_id. Here's what I came up with:
- Instead of passing the user_id back and forth between the browser and my server, I'll pass the signed_request because this cannot be spoofed without knowing my app_secret
- To protect this from being sniffed and re-used, I'll encapsulate my requests in SSL (HTTPS)
- To prevent stale signed_requests from being used, I'll make sure the issued_at is relatively recent.
Is this part of what signed_request is meant for, or is there a more correct way to use facebook authentication?
Any obvious problems with my approach?
Thanks!