I am using java and the purpose of my demo application is simple: Update user status. I followed the Server-side Flow on page http://developers.facebook.com/docs/authentication. I got the auth dialog, facebook lead to the callback url and I got the code in my callback page. Then I failed when I try to generate an access token.

In the guide page, it says the following url could be used to generated an access token:

https://graph.facebook.com/oauth/access_token?
     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&
     client_secret=YOUR_APP_SECRET&code=THE_CODE_FROM_ABOVE

But what happens in my environment is I got the following error message:

{
   "error": {
      "type": "OAuthException",
      "message": "Error validating verification code."
   }
}

I am quite sure every parameter is correct because if I change the client_id value or client_secret parameter, I will got a different error message. The code parameter is what I got from facebook callback. So this should be correct, right? Really can't figure out what is the problem....

Any idea about this? I get stuck here...

link|improve this question

13  
Resolved this by my self...The key problem is all about "URL". The callback "redirect_uri" in code generation url should also be the same as "redirect_uri" in the token generation url... – DeepNightTwo Feb 18 '11 at 14:28
Absolutely priceless. Thank you so much for that. – dimitko Dec 8 '11 at 10:25
This is silly and should be mentioned in the docs. Thanks a lot for the info – Imran Rashid Mar 31 at 12:30
@DeepNightTwo thank you so much, that was perfect. – Peter Downs May 3 at 22:20
feedback

4 Answers

up vote 22 down vote accepted

I recently dealt with exactly this problem: everything matched, but it failed with the OAuthException. The thing that made it work was to change the redirect uri (in both requests for the flow) from:

http://foo.example.com

to

http://foo.example.com/

I.e., add the trailing slash. And then it worked. Stupid and silly, but there you go.

link|improve this answer
2  
Thanks! I've been trying to figure this out for ages. What a stupid problem. – Jake May 2 '11 at 1:43
This didn't work for me, any other ideas? – Joshua Rountree Feb 6 at 15:06
where did you change the redirect uri? I don't see a setting for this on the app page on Facebook. – Michael Mar 18 at 22:56
1  
Thank you so much. I've been banging my head on my desk for a while trying to figure this out. – jfedick Mar 27 at 16:30
This answer literally saved me 30 mins of horrible, horrible frustration. – ehfeng Apr 11 at 21:12
feedback

Yes, the trailing slash worked for me too, thanks!

For debugging purposes, I found it helpful to use exactly the code fb provides on the developer page:

http://developers.facebook.com/docs/authentication/

Once you get that working, you can modify it to fit your own code.

I'm not sure, but you might also check to make sure your "Site URL" and "Site Domain" settings are correct on the App Edit screen, because according to the documentation, the redirect_uri must be in the same domain. (This is different from the canvas/tab page urls.)

link|improve this answer
feedback

We had some fun with this as well.

In our case the trailing slash in the URL was already there, so I tried the Token we were using in the FB Debug Tool and it validated, so it looked like FB wasn't even seeing the Token in the request.

After some investigation I found the head-slapper - we doing a GET with HTTP Headers only not with a Querystring, so FB litterally wasn't seeing the Token at all.

The moral seems to be that if you can get the Token to validated in the FB Debug tool, there is likely /something/ amiss in your request -

It might be a missing "/" or some other mismatch with the App's defined URL (Domain mistmatch is a different error). I have not tried defining the App / Web Url for HTTPS and doing the request with HTTP but I suspect it would also hiccup somehow.

Or as in our case, the Request Method might be incorrect - GET with Headers or POSTing both throw the 2500, you have to do GET with a Querystring.

Hope that helps!

link|improve this answer
feedback

I had the same problem and tried the above suggestions. They helped, but in my case the problem was that my redir URL had a query parameter and Facebook wasn't cool with that. So, moral of the story is that the redir url you sent to exchange the token has to be identical the the original redir url and it can't have query parameters.

link|improve this answer
Query parameters are OK, but they need to be the same when you make the second call to exchange the code for a token – Igy May 9 at 6:29
I made sure that the two URLs were identical. They only worked when they were identical AND there were no query parameters. Also tried URL encoded un-encoded. – Vinayak Suley May 9 at 21:07
feedback

protected by Community May 16 at 14:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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