Hello, Hmm that is very strange, I am still using CAS 5.3.x and POST working fine.
I don't think trying for ID-token directly might not be what you want, since ID-token is different than the authentication code flow, so you are testing 2 things here. I do see that your POST is a bit strange, did you put all your parameter on the query like so https://localhost:8543/cas5/oidc/authorize?client_id=demoOIDC&redirect_uri=https%3A%2F%2Foidcdebugger.com%2Fdebug&scope=openid&response_type=code%20id_token&response_mode=form_post&nonce=gb63gw2hmqk The url should only be https://localhost:8543/cas5/oidc/authorize, and the parameter should be sent using other means. You can use Postman or insomnia or some software like that to help you make an proper post request. If you use Postman: 1. put url as only https://localhost:8543/cas5/oidc/authorize 2 Select POST method 3. Select Body tab 4. Add all your query parameter to the key and value pairs in body At least that what works for me, see if that works for you too! Cheers! - Andy -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/5a373017-cf50-402b-8881-e97b8b93937d%40apereo.org.
