I did some searches and I didn't find anything that was related to my problem.

I'm currently trying to implement a Facebook login to my website and I'm having problems with the login authentication due to htaccess mod rewrite URLs?

The code works perfectly and I get logged in if I use it without the mod rewrite rules like:

domain.com/view_webhosting.php?webhosting=name

But as soon as I go over to the mod rewrite URL

domain.com/webhosting-name/

Then it just doesnt work and throws a error "CSRF state token does not match one provided."

in the htaccess file it looks like this

RewriteRule ^webhosting-([a-z_0-9-]+)/$ /view_webhosting.php?webhosting=$1 [L]

Anyone have a solution to a problem like this? I am using Facebook SDK v3.1.1

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

The PHP SDK expects the 'state' field to be in $_REQUEST (I believe as a GET param) after the redirect before you can exchange the 'code' for an access token. From base_facebook.php:

protected function getCode() {
  if (isset($_REQUEST['code'])) {
    if ($this->state !== null &&
      isset($_REQUEST['state']) &&
      $this->state === $_REQUEST['state']) {

      // CSRF state has done its job, so clear it
      $this->state = null;
      $this->clearPersistentData('state');
      return $_REQUEST['code'];
    } else {
      self::errorLog('CSRF state token does not match one provided.');
      return false;
    }
  }

  return false;
}

Your RewriteRule may be stomping on that param.

link|improve this answer
feedback

I assume you mean the PHP SDK?

Sounds like you're not passing the 'state' request variable to your PHP script. Have you read https://developers.facebook.com/docs/authentication/ (specifically the bits and protecting yourself from CSRF?).

Also, I assume this is a typo in your question, but shouldn't your rewrite rule be:

RewriteRule ^webhosting-([a-z_0-9-]+)/$ /view_webhosting.php?**webhosting**=$1 [L]
link|improve this answer
Hello mrtom Yeah sorry thats just a typ, i figured it would be easier to read when i translated it to english :) The example im using is github.com/facebook/php-sdk/blob/master/examples/example.php and there's nothing about CSRF protection? this facebook API is weird with different codes all over the place. but it does work properly when not using the mod rewrite url... – John Sep 7 '11 at 22:00
feedback

Try changing your RewriteRule to

RewriteRule ^webhosting-([a-z_0-9-]+)/$ /view_webhosting.php?webhosting=$1 [L,QSA]

QSA = Query String Append. This ensures you don't lose your GET params.

link|improve this answer
feedback

Thanks bismark

You were correct, it couldnt get the GET parameters and the solution was this.

from

RewriteRule ^webhosting-([a-z_0-9-]+)/$ /view_webhosting.php?webhosting=$1 [L]

to

RewriteRule ^webhosting-([a-z_0-9-]+)/$ /view_webhosting.php?webhosting=$1 [QSA,L]

Query string append [QSA]

•'qsappend|QSA' (query string append)
This flag forces the rewrite engine to append a query string part of the substitution string 
to  the existing string, instead of replacing it. Use this when you want to add more data 
to the query string via a rewrite rule.

Thanks guys, put me on the right track!

link|improve this answer
If bismark is correct, it is nice to accept the answer or at very least vote up. I have voted up your question to give you a little rep to play with. – Remou Sep 9 '11 at 9:11
Hello Remou, ur absolutely right, im kinda new to this webpage so i didnt know i could vote or accept answers :) – John Sep 16 '11 at 8:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.