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.

When asking for authorisation by redirecting to the following url:

https://graph.facebook.com/oauth/authorize?client_id=...&scope=email,offline_access&redirect_uri=http%3A%2F%2Flocalhost%2Flogin%2Findex.php%3Fcallback%3Dfacebook

Facebook returns 'Invalid redirect_uri Given URL is not permitted by the application configuration.'

Possibly because my application is registered with http://syncacity.com on the application configuration. But still, twitter allows me to redirect to any url, so why is facebook whining?

I'd appreciate your thoughts :)

share|improve this question

5 Answers

Change your application url to http://localhost while you develop and then to your site once it's in production. :)

share|improve this answer
13  
This is a poor solution. Facebook is restricting the redirect url to a setting in your fbApp. That makes it damn hard to develop with a live website. Why is their 'site' not a list of approved servers so you can add machines one-by one for testing? Internal IPs + external web site. – Kieveli Apr 19 '11 at 17:58
3  
@Kievli : One solution is to create an application for each environment and keep the keys in a config file. That's the easiest way I found to work with FB logins. – mrmuggles Nov 8 '11 at 14:48
   
How does this solution have 10 upvotes? Crazy! – Mild Fuzz Feb 15 '12 at 16:09
Using localhost didn't work for me. I even added all the IP addresses to whitelist, but it still won't let me use something that resolves to a private IP in redirect_uri. – f.ardelian Apr 5 '12 at 9:47

why not just edit your hosts file and point your domain to your local ip then you only need to switch the dev box hosts before doing anything.

share|improve this answer

it got resolved - thanks to one of the Facebook platform developers.

Let's say your local site URL is http://localhost:8000 You will need to add http://localhost:8000 to the Facebook App setting at "Settings -> Basic -> Website->Site URL."

share|improve this answer

I create a test app in sandbox mode (advanced settings) then integrate to that for development and test

share|improve this answer

You have defined localhost url in redirect_url (redirect_uri=http://localhost/login/index.php ..) I'm not familiar with OAuth but that might be the problem.

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.