I have realized, that many people have problems with facebook auth when developing.. And i am not an exception..
So, i am making an app for mobile phone. And I need twitter and facebook authentications.
My pc and my phone (Samsung Galaxy S2), on witch im developing, is connected to one router.
My pc ip is 10.4.1.6. In twitter i just enter callback_url "http://10.4.1.6:3000" and everything works great, but on facebook i get:
"Invalid redirect_uri: Given URL is not allowed by the Application configuration."
Ok, I thought, if i cant enter ip of my router, i can edit my hosts files on my phone and my pc, to point to my rails server, but still, no luck.
When I try to enter "http://rails_dev_work_pc.com:3000", facebook is telling me that the url is invalid.
I rly hope, someone will be able to help me. :)
EDIT: ok. So i tried to enter this:
- domain => "localhost.com"
- callback_url => "http://localhost.com:3000/auth/facebook/callback"
- in pc hosts => "127.0.1.1 localhost.com";
- in phone hosts => "10.4.1.6 localhost.com
i get the same error on my phone and my pc
and
- domain => "localhost"
- callback_url => "http://localhost:3000/auth/facebook/callback"
- in my pc hosts => "127.0.1.1 localhost";
- in phone hosts => "10.4.1.6 localhost
on pc works fine, but on my phone i get the invalid url error..
Im out of ideas..