I have an app that I originally coded as server-side authentication in PHP.
However, I want the client to do AJAX calls into my server, and then based on the Facebook userId do some queries in my database. I can't just accept a userId variable, because anyone can just spoof it, so I think I need to access the user's accessToken.
However, this being an AJAX call into a PHP file on the server, I don't have the ability to use the same server-side authentication methods as presented in the examples.
So I think the client needs to pass an FB access token through the AJAX call, and then I validate that access token server-side, and then use it to get the user's id and additional information.
However, if I use server-side authentication, the client never actually retrieves its access token from Facebook, only the server has it, which means the client can't pass the access token.
My question is: once I do the original server-side validation, should I store the access token server-side based on the cookie and then get the access_token that way?
Or, is there a better practice for Facebook apps so that I don't need to worry about leaking an access token via cookie spoofing?