Hi!
My redirect_uri contains a location hash (#)
e.g http://localhost:4200/#/login
After the authentication and redirecting,
The OAuth params break the URL like this:
http://localhost:4200/?code=xxxx&state=xxxx#/login
Is there anything solution to fix, so that the URL will look like this after redirection http://localhost:4200/#/login?code=xxxx&state=xxxx
Thanks.