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 an application that I want to have Facebook Authentication setup on. The application is using a loose MVC framework and thus the handling for the Facebook Authentication (the redirect) needs to be done via a module. Since this is under development I'm working off a development URL, which is a sub domain.

I've created an app, put it in sandbox mode, and set the App domain to "example.com" and the Site URL to "http://dev-site.example.com". My login URL is generated via the current Facebook PhP API and the redirect_uri is /facebookauth/processResponse. I click the link and get....

An error occurred with FTR_Sandbox. Please try again later.

API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.

I'm at a loss here, I've tried a lot of different settings (Add Domain including the sub domain, with training slashes, without training slashes) and I keep getting that error.

What am I doing wrong!?

share|improve this question
Ok. I got it. Boy I feel stupid. The Facebook PhP object wants an associative array passed into its getLoginUrl method. Part of this array is the "redirect_ur**i**". I had redirect_url. Made that change, quick refresh, validated the link being printed, click and I see a authorization dialog from Facebook. YAY! – user1505791 Jul 6 '12 at 5:29
If your app url is sub-domain.domain.com, Then add sub-domain.domain.com as your domain – ASHUTOSH Jul 6 '12 at 5:32
Welcome to SO! If you found a solution for your question, you can answer it your self and select it as the correct one, to flag this question as an answered one and help other users with the same error. – Philip Jul 6 '12 at 7:32

1 Answer

If your app url is sub-domain.domain.com, Then add sub-domain.domain.com as your domain

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.