我在我的 django 网络应用程序中使用了 social-auth。当我在生产环境中访问 /login/facebook 时,用户可以使用他们的 facebook 数据登录。但是在我的开发环境中,当我访问
http://localhost:8000/login/facebook/,
我收到一条错误消息
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.
我相信这是因为域是 localhost:8000。我该如何解决这个问题,以便我可以在我的开发环境中使用 facebook 登录?