When I sign up/sign in with my social account using django-allauth like
http://localhost:8000/accounts/google/login/
Now after doing authentication, Google redirect us back to the below callback URL as
http://localhost:8000/accounts/microsoft/login/callback/
I want to change the above URLs to be redirected to the frontend service and then redirect it from there to our backend server. Is there a way around to achieve this? Because due to security reasons I only our frontend server to interact with our back, not any other third part.