I have an OpenID Connect Identity provider set up in an AWS Cognito user pool. When trying this URL in a browser:
https://<my_user_pool_domain>/oauth2/authorize?redirect_uri=<callback_uri>&response_type=code&client_id=<client_id>&identity_provider=<my_oidc_provider>
Cognito redirects to my OIDC provider with the following URL
https://<my_oidc_provider>/oauth2/authorize?client_id=<oidc_client_id>
&redirect_uri=https://<my_user_pool_domain>/oauth/idpresponse&scope=openid&response_type=code&state=<state>
But this is where I’m stuck because the provider requires acr_values as a param. Is it possible to have Cognito add &acr_values=<my_values>
to the query?