Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Cross Site Request Forgery is a malicious attack to exploit a website's trust in a user's browser.

learn more… | top users | synonyms (1)

0
votes
0answers
36 views

SOLVED Facebook CSRF Error, Its depend on domain? [closed]

I have searched this problem and found many related question. Their problem solved with edit base_facebook.php, or edit .htaccess, or others. but my question not described an not related with it. ...
0
votes
0answers
176 views

error_log -CSRF state token does not match one provided

Why should there be an error? CSRF state token does not match one provided code $uid = $facebook->getUser(); $login_url = $facebook->getLoginUrl// ( array ...
0
votes
1answer
142 views

Facebook SDK CSRF Error

I have problem with the Facebook SDK. I keep getting the following error: CSRF state token does not match one provided I don't have any RewriteRule rule as it was suggested before, so thats not ...
0
votes
0answers
167 views

facebook php login CSRF

I am trying to build a facebook user login with php. I am able to get user info but every login creates an error log on my server CSRF state token does not match one provided. after login success. I ...
0
votes
1answer
363 views

PHP-SDK getUser() always 0 / not authenticated

I'm using the A3M CodeIgniter library, with updated FB PHP-SDK 3.2. I'm forced into updating from 2.x as Facebook retired their 'legacy' connection method the other day, and that's what the a3m ...
1
vote
0answers
101 views

Why is state variable necessary for Facebook login

Facebook's server-side login process mentions that the server should provide a 'state' variable during the request to Facebook. It acts like a CSRF token in which Facebook will pass back to ...
1
vote
0answers
78 views

Can Rails CSRF token be used in Facebook server login request?

When implementing a Facebook server-side login, the documentation says that our server should supply a state string, which Facebook will send back to us during the callback. We can then check if the ...
0
votes
0answers
162 views

login and CSRF protection

I am writing a Facebook login script for my website and I am facing some CSRF protection problems. Here is my code: <?php session_start(); //facebook application $fbconfig['appid' ] = ...
0
votes
1answer
1k views

CSRF state token does not match one provided

Getting server error log with this code.. and also this code giving me only my 81 friends , but i have 87 friends in my friend list .. Give me a suggestion.. <?php ...
5
votes
1answer
1k views

Facebook PHP SDK - getLoginUrl() - state value

I am using the PHP SDK getLoginUrl() function which works perfectly to log the user in. Once the user is redirected back to my page, the URL can come in two forms, see in the following link subsection ...
2
votes
0answers
237 views

Django CSRF protection in Facebook Tab or Canvas App

Django's CSRF protection sets a cookie with the token on response and compares that to the token that is POSTed by the form. It appears in my Facebook Tab app that the csrf cookie is never being set ...
0
votes
1answer
87 views

Will the auth work without state at the SESSION?

I saw similar question Facebook Authentication Example CSRF and they say "The hash (or state) is generated by you for each request to the web service (Facebook) and stored in the session on your ...
14
votes
4answers
10k views

CSRF state token does not match one provided FB PHP SDK 3.1.1 Oauth 2.0

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 ...
0
votes
2answers
209 views

Getting internal error when loading canvas app through FB, but not directly

I'm using django for a website app, mostly. I need to write a canvas page to handle requests. In the simplest form, I have: (r'^canvas/','commitments.views.canvas'), in urls.py, and: @csrf_exempt ...
0
votes
1answer
341 views

Can't Authenticate in IE

I've been a Facebook developer for a while now, but I'm starting fresh with the new Facebook App layout and stuck one of the first steps. So apparently my old method of authentication doesn't work ...
0
votes
1answer
1k views

Facebook Auth and CSRF mechanism

I am currently building a website using facebook authentication. I am running locally and keep getting CSRF errors. I am trying to understand their CSRF protection mechanism: $code = ...
0
votes
1answer
1k views

Facebook Authentication Example CSRF

The Facebook authentication example given at http://developers.facebook.com/docs/authentication/ tries to prevent CSRF by inserting a random grouping of information into the status part of the ...
1
vote
1answer
292 views

problem while using enabled csrf_protection with Facebook Application

Hello everyone, I have implemented a basic Facebook Application with codeigniter. Its work fine until the csrf_protection=false (i.e Cross Site Request Forgery is disabled). But when i enable ...
2
votes
3answers
1k views

Django: CSRF token missing in facebooks post 'signed-request'

I am working with a Django project. The aim is to import user information from facebook. For a start, I am using the registration social plugin that facebook offers. I have a basic template that ...
2
votes
2answers
809 views

Using flatpages to create a simple facebook app, but CSRF problem caused by signed_request

I am trying to create a simple, html-only facebook app for a client's fb page. I would like to use django's flatpages so that the client and his staff can change the content of the app through the ...
2
votes
2answers
2k views

How do I bypass protect_from_forgery in Rails 3 for a Facebook canvas app?

I have a Rails 3 Facebook canvas app. When it loads up it gives me an invalid authenticity token error and displays the signed_request parameter that Facebook sends to my app. Is there a way to bypass ...