Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Use the signed_request parameter to verify the genuineness of the request server-side. developers.facebook.com/docs/howtos/login/signed-request – CBroe Jan 30 at 13:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.