-
Notifications
You must be signed in to change notification settings - Fork 37
Description
there is an issuer_state parameter that can be passed in the Credential Offer to be used in the authorization code flow that the wallet is required to include in the authorization request when received.
It's functionality is somewhat similar to that of pre_authorization code. Torsten reminded me that the original use-case to add this parameter was: " if the user logs in prior to receiving a credential offer, when receiving issuer_state, the AS can offer an SSO experience while ensuring it is the same user. In cross device session, issuer_state can also be used to allow the AS to force login with the same identity.
In our implementation, there is also a need for the Credential Issuer to know the original session of the user because the issuer maybe issuing multiple credentials of the same type to different users and the Issuer need to know the original user session. Suggested way forward is to ask the wallet to pass the issuer_state in the credential request (in addition to the authorization request), when isser_state was received in the credential offer. Feedback appreciated!