Hi all,
I'm having some problem with the configuration of OIDC with cas 7.1.3.
The old version I have, 5.3.16 works fine.
With the new version instead, I start from the similar request, but at the end I don't have the same redirect, and I lost al the parameters in the link that I use on my java application.
I have this workflow:
- ..../oidc/oidcAuthorize?scope=scopevalue&response_type=code&redirectUri=redirectUri&state=stateValue&nonce=noncevalue&clientid=clientValue
- Then seems work fine with the login, mfa etc.
- /oauth2.0/callbackAuthorize?clientId....scope....redirecturi....responseType....state....nonce...clientname...ticket
- And the location of this last link, is just the redirect uri.
Instead in the version 5.1.16 the last redirect workflow is:
- oidc/authorize
- all the stuff for the login
- oauth2.0/callbackAuthorize with all the parameters
- /oidc/authorize with a location that contains the parameters state nonce code
And after the redirect of the authorize I can read also the authorization code and so validate the session.
But with the new version this last step is not present.
Do you have any suggestion or example on how it should work?
Thank you