I'm using social-auth with my django web app. When I go to /login/facebook in the production environment, the user is able to login using their facebook data. However in my development environment when I access
http://localhost:8000/login/facebook/,
I get an error saying
An error occurred. 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 believe this is because the domain is localhost:8000. How do I fix this so I can login using facebook in my development environment?
/etc/hosts/file pointing to your local host127.0.0.1 myapp.com. That will do the trick – omab Nov 27 '12 at 14:45man hostshas all the basic information, it's not really complicated, you add a new line with the format<IP ADDRESS> <DOMAIN>. – omab Nov 30 '12 at 15:02