Hi,
I have integrated the Signicat into AWS Cognito as IDP and. I want to do the logout process in one single backend call but my problem is that calling the Signicat endsession requires a user confirmation. My question, is it possible to configure the endsession endpoint for silent logout? Or I just need to modify the flow to log out from signicat first by user confirmation and then cleaning up the cognito session(I need to reverse the flow in this case)?
I use the following flow to log out the user:
- Logout from cognito session using the official cognito logout uri - works fine
- Logout from signicat by constructing the following uri:
https://<YOUR_SIGNICAT_DOMAIN>/auth/open/connect/endsession?post_logout_redirect_uri=<post_logout_uri>&id_token_hint=<id_token>
Thanks in advance for your help!