I will have a website hosted on S3 (Static HTML) at mywepapp.com. And I will be building my own JSON API using a EC2 box located at api.mywepapp.com, I will build this using PHP (probably CodeIgnitor).
I will login the user on the static HTML frontend using the Facebook JavaScript SDK (http://mywebapp.com). I have got to the stage where I have the user logged in and I have an object with their details in JavaScript within the client side.
So lets say I have their facebook_uid. I then want to register the user with my own API using their facebook_uid or anything unique. So I need to post the Facebook ID to a call on my server. What is the best way to do this securely? can I do this without using the Facebook PHP Library on the server?
So the problem in essence I am trying to solve is if I post an string ID '098765' to a server how do I stop someone just looking at the JavaScript code and posting '098765' to the server and registering the user themselves?
Hopefully this is clearer I think its based custom API AJAX rather than a specific Facebook JavaScript API query. I am trying to minimise the load on the API server as much as possible.
Thanks
signed_requestparameter to verify the genuineness of the request server-side. developers.facebook.com/docs/howtos/login/signed-request – CBroe Jan 30 at 13:41