I'm developing a FB app that is loaded in a FB canvas. I'm using Java with Spring as server side technology. On app load, FB requests with POST the URL that I have configured in the app account in FB, including signed_request
param for user authorization. This way I can get the logged in user ID securely.
I wonder what is the best way to get the logged in user ID on each call from the HTML inside the canvas to my app web server (right after the signed_request call)?
Thanks!
I would do it as follows:
signed_request
param.My two cents!