Has anyone noticed if the server authentication process has changed when using a mobile device?
I have my PHP code set up more or less exactly as shown in the following example:
https://developers.facebook.com/docs/authentication/server-side/
On previous projects this has worked fine - in the case of a mobile device the user would always be sent through the auth process because on initial access of the mobile website (via the apps.facebook.com redirection) the URL would not contain a code querystring parameter.
However, I've just tested the flow on a new project and have noticed the mobile URL is immediately sent a code querystring value. The problem this causes is that - going by the example - the auth process skips the part where it sets a session value for CSRF protection. Subsequently the next IF block check is also skipped because this session key is not present.
Anyone already dealt with this issue, or am I missing something painfully obvious?
Cheers
Lee