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.

I have two methods of authenticating users. One is the normal oauth way from my website:

https://www.facebook.com/dialog/oauth?client_id=161077997258367&redirect_uri=http%3A%2F%2Fwww.shopography.com%2F&scope=email%2Coffline_access%2Cuser_birthday%2Cpublish_actions%2Cpublish_stream%2Cread_stream%2Cstatus_update&state=%7B%22rID%22%3A570001%7D

This returns a code which I can then use to request an auth_token. No problems there!

However, when I click on a link internal to Facebook which is configured for authenticated referral, I get a code that Facebook rejects and therefore, I get no auth_token.

The error I get with authenticated referall is: {"error":{"message":"Error validating verification code.","type":"OAuthException"}}

Any ideas?

share|improve this question
i've further learned that authenticated referral works but only on my base domain such as www.example.com. the minute i do something like www.example.com/hello/ or www.example/?state=hello then the code no longer works – Mark Z Feb 1 '12 at 18:25

1 Answer

Get the current URL from the authenticated referral request and use it up to the '&code=..'. as redirect_uri when exchanging access token.

share|improve this answer

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.