My server logs show a "CSRF state token does not match one provided" error which seems to happen for almost every user. However, the users are created and/or authenticated and I am able to retrieve the user info. I am using a Linux server with Apache. I am also using the latest Facebook PHP SDK v.3.1.1 Can anyone tell me why this is happening and how to fix it?
|
|
I had a similar issue last week, and tracked it down to the The SDK looks for the same |
||||
|
Well, I've encountered this exact problem once, and I had a problem with the I'm guessing you are having the same problem. CSRF state token does not match one provided Hope this helps |
|||||
|
|
To add a bit to chesles's answer, this problem can occur if you're playing with the session_start() - session_write_close() functions, as I did. If there is no started session when you're requesting the loginUrl, you'll get this error. Sidenote: Why bother stopping the session? Scripts that use sessions stops each other, because they're waiting for the session array to be available to use. Imagine that you have a popular application, with thousands of users, and have an action (a php script) where you post a picture. Something like this: --starting session at the top of the script --connecting to facebook --creating the image --sharing the image with the api call --script end, session closes automatically Doing this, the session will be used by the script for a long time for no reason. Be careful with such scripts, use something like this instead: --starting session right before where you create the facebook object --connecting to facebook --closing session with session_write_close(), the session array's available, other scripts can load --creating the image --sharing the image with the api call /* It think this doesn't need a session. */ --script end, session already closed manually. Cheers. |
|||
|
|