Open
Description
Preflight Checklist
- I could not find a solution in the existing issues, docs, nor discussions
- I have joined the ZITADEL chat
Describe your problem
The authentication response in the authorization code grant is controlled in the following section. If we incorporate the OIDC session management specifications, it will be necessary to include session_state in the authentication response. I want to enable handling of session_state.
https://github.com/zitadel/oidc/blob/main/pkg/op/auth_request.go#L482-L488
codeResponse := struct {
Code string `schema:"code"`
State string `schema:"state,omitempty"`
}{
Code: code,
State: authReq.GetState(),
}
Describe your ideal solution
To allow session_state to be passed in the authentication request, I will modify the codeResponse interface to accept session information as an argument.
Version
No response
Environment
Self-hosted
Additional Context
No response
Metadata
Assignees
Type
Projects
Status
📨 Product Backlog
Activity