I am trying to implement an oauth2 login flow using :
- Hydra oauth2 server
- Identity Provider
- The frontend application is using angular framework
Here is the first part of the flow (until I get the CORS issue) :
As long as I do a non Ajax form POST, 302 redirection goes well. But angular framework does not come with nice solution to avoid ajax form. Tell me if i'm wrong.
What is the best solution between the following :
- do non ajax form in angular
- replace 302 by 200 with the redirectUrl in the response and let angular do the redirection
- allow cross origin on hydra
- any other solution ?
I implemented the following solution :
and it works well.