I am using social-auth with my django web application. When I go to / login / facebook in the working environment, the user can log in using his facebook data. However, in my development environment, when I refer to
http://localhost:8000/login/facebook/,
I get an error
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 that I can log in using facebook in my development environment?
source share