clever-ice-6330
11/17/2023, 10:56 AMThe provider microsoft does not support id_token verification
using the Golang Ory SDK while trying to implement Social Sign In. This error occurs after token exchange w/ Azure/Microsoft, afterwards while providing the following to `frontendAPI.UpdateRegistrationFlow`:
• flow_id
• csrf_token
• method (oidc
)
• provider (microsoft
)
• id_token
• id_token_nonce
• claims
The Azure Identity provider configuration, to my understanding, is correctly setup for both multi-tenant and personal accounts (using Microsoft/Azure common
endpoints like
<https://login.microsoftonline.com/common/oauth2/v2.0/>
as well as the manifest set with "signInAudience": "AzureADandPersonalMicrosoftAccount"
). What’s perplexing is that all the presumed required parameters are provided (all of which worked for my Google OIDC implementation sans the id_token_nonce).
Any feedback on this appreciated.