I have google it and read multiple article to find out the solution to redirect UI page in the browser to another page from backend service. I have not got what I am looking for so putting this question in the hope, I will get the solution. :)
My Requirement: I have below three service running on three different port as below:
appA developed in angular running on http://localhost:4000
loginPage developed in angular running on http://localhost:4200
authorization server developed in Golang running on http://locahost:8080
I have launched application appA in browser and then click on login button which is redirecting to applicaiton loginPage. now on loginPage, user is providing credential and on button click, angular is internally making http call to authorization server to validate the user.
After successful credential validation, authorization service(rest endpoint) is redirecting that loginPage to application appA home page at the browser side.
Problem
After successful credential validation, authorization service is redirecting loginPage to application appA home page, I can see this in the browser network tab but browser page is not reloading on the redirected url.
My requirement is to load the redirected url on the browser.
Question Below are my question:
- Is it possible to redirect browser url from one point to another or not.
- If yes, please let me know the solution. I have tried the httpInterceptor approach in the angular. Here also, we are reloading page with angular code instead of happening from backend side. So this is not what i am looking for.
- If not, then how other places they have achieved it.
For example: I want to login to makeMytrip application using google account. there we redirected to google login page and after the authentication, google redirect back to the makeMytrip home page.
NOTE:
OAuth2 protocol is completely based on it. how they achieved it.
I don't also want to use form submit approach which has it's own limitation.
As this scenario is used in multiple places in real world. Please help me find the right accepted solution instead of workaround or hack kind of approach.