I am trying to set up Omniauth as described in this Railscast. While it works with Twitter, I am unable to get it working with Facebook. I also set up 'http://localhost:3000' as siteurl and 'localhost' as domain but still see the following error message in the browser:

Invalid redirect_uri: Given URL is not allowed by the Application configuration.

Does anyone of you have any suggestions on how to fix this? Thanks in advance.

link|improve this question

40% accept rate
I don't think I added any configuration except '0.0.0.0:3000/';. When you start up your local Rails server, what IP address does it say it's using? – monocle Jan 1 '11 at 1:11
It says 0.0.0.0:3000. What excactly did you add in your host file? – Ryan Foster Jan 1 '11 at 12:22
I've never modified my hosts file. It has 127.0.0.1 for localhost. – monocle Jan 1 '11 at 15:49
feedback

5 Answers

up vote 12 down vote accepted

Take a look at the redirect in the URI. Mine read localhost:3000 so I changed the Site URL to "http://localhost:3000/" and it worked.

link|improve this answer
2  
Now it works! Thank your very much. After that i ran into this problem stackoverflow.com/questions/3977303/… . I followed the advise given in the answer and another error occured: No route matches "/auth/failure".. Hope to find a solution for that, too. – Ryan Foster Jan 1 '11 at 21:44
feedback

Here's what worked for me.

Right now Facebook does not allow setting the Site Domain to an IP, so it's not possible to set the Site URL to http://127.0.0.1:3000/ because then Facebook will complain that the URL does not match the domain.

So in your Facebook App set the:

Site URL: http://localhost:3000/
Domain: localhost

When you access the app on your dev machine make sure you type in localhost:3000 in the browser. If you use 127.0.0.1:3000 OmniAuth will use that in the callback url it sends to Facebook and then Facebook will throw the error Ryan mentions above.

link|improve this answer
feedback

I switch to http://lvh.me:3000 in my local browser to test facebook locally. Then in facebook app settings, make lvh.me your domain.

lvh.me is a registered domain pointing to 127.0.0.1 that a developer bought to test subdomains locally.

link|improve this answer
feedback

Try using

http://0.0.0.0:3000/

for the 'Site URL'. This works for me. (Also, I don't have anything in the 'Site Domain' field.)

link|improve this answer
still getting the same error after following your advise. did you add any line to your hostfile? i'm starting to lose my sanity because of this.. :( – Ryan Foster Dec 31 '10 at 7:45
feedback

I'm getting the same error. I also tried these:

127.0.0.1/
127.0.0.1:3000/auth/facebook/callback
0.0.0.0:3000/
0.0.0.0:3000/auth/facebook/callback
link|improve this answer
yeah, me too .. – Ryan Foster Dec 31 '10 at 7:47
Try localhost:9393 Port 3000 didn't work for me, but came upon 9393 when running sinatra with shotgun. – sent-hil Feb 28 '11 at 12:37
feedback

Your Answer

 
or
required, but never shown

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