Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

After a user is redirected to login dialog

$url = "https://graph.facebook.com/oauth/authorize?client_id=$appid&scope=&" .
"redirect_uri=$process_url";

where $process_uri is urlencoded url of form https://my.domain.com/process.php?param1=value1&param2=value2. After user returned to https://my.domain.com/process.php I do curl request to (have tried to use file_get_contents first):

$url = "https://graph.facebook.com/oauth/access_token?client_id=" .
"$appid&redirect_uri=$current_url&client_secret=$secret" .
"&code={$_REQUEST['code']}";

I'm getting { "error": { "message": "Error validating verification code.", "type": "OAuthException", "code": 100 } }.

After googling I realized that the main reason that may cause the problem is wrong redirect_uri in curl request. The question is: what should be redirect_uri in curl request? https://my.domain.com/? Or https://my.domain.com/process.php? Or https://my.domain.com/process.php?param1=value1&param2=value2?

Thank you in advance!

share|improve this question

1 Answer

up vote 1 down vote accepted

Remove the code parameter when you're submitting the current URL as the redirect_uri to the https://graph.facebook.com/oauth/access_token endpoint.

share|improve this answer
got "Error validating verification code." – Eugeny89 Aug 17 '12 at 10:49
Well I believe the redirect_uri is used as a hash so it must be submitted in exactly the same form as you provided to the authorize endpoint. The user is redirected to this uri with an extra parameter, code, so it should be sufficient to just remove the code parameter from the current URL. Ensure the encoding is the same (including casing). From your example above it should be "my.domain.com/process.php?param1=value1&param2=value2"; encoded – masond Aug 17 '12 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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