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 am working atm width the Registration Plugin, but I am getting the error: "That 'redirect_uri' isn't allowed for that client_id.". I searched some for this error code and I found, that the parameter I send has to be the same one as I have put for the domain in my application settings, but they are right.

Here you can see my source code: deleted

And here are the application settings: deleted

I hope someone can help me.

Thanks a lot for reading and have a nice evening

Edit: My mistake was, that i didnt changed the APP ID code in iframe code.

share|improve this question

1 Answer

The Website URL field or 'App Domains' field in your app settings also have to match the URL you're using as the redirect URI

share|improve this answer
Ive checked it double time, but it doesn`t work. Please check the image I´ve uploaded. – Lucas Quentel Mar 15 '12 at 17:53
That's a different App ID (ends in 0281 in the screenshot of the settings, and 1936 in the code) Also, you should remove that image, your app secret is visible – Igy Mar 15 '12 at 17:55
Ah, ive forgot to change APP ID, how stupid. – Lucas Quentel Mar 15 '12 at 18:05
Make sure that you define your constants before the call that uses them. This was my error: parse_signed_request(...) define('FACEBOOK_SECRET','...'); function parse_signed_request() { ... } Unlike functions, defines don't get processed until runtime hits them, apparently, while function definitions are processed at compile time. – Dave Scotese Aug 24 '12 at 6:14

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.