Hi all,
Problems trying to login with Facebook on a website. The issue is that it works for me, but when I add other tests in the App settings, it doesn't work for them, they are getting the error: Facebook SDK returned an error: Cross-site request forgery validation failed. The "state" param from the URL and session do not match.
But this is not TRUE! My session data is:
Array
(
[FBRLH_state] => 31ac6aa90aa1a7e4eaf18f5103a29bad
)
Note that the STATE is the same for both. So the error message is surely false.
I am setting my sessions at the top of all scripts:
if(!session_id()) {
session_start();
}
And like I said, this works absolutely fine for me, but not for any other user.... Any idea?!