Skip to content

Advice on using with Azure B2C OIDC, which lacks the OpenID configuration key code_challenge_methods_supported #377

Answered by maennchen
Nezteb asked this question in Q&A
Discussion options

You must be logged in to vote

@Nezteb In cases where the Introspection is incorrect, the document_overrides option of the quirks can be set to override the values.

Assuming you're using oidcc_provider_configuration_worker:

{ok, Pid} = oidcc_provider_configuration_worker:start_link(#{
  issuer => "...",
  provider_configuration_opts =>#{
    quirks => #{
      document_overrides => #{
        <<"code_challenge_methods_supported">> => [<<"S256">>]
      }
    }
  }
}

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Nezteb
Comment options

Answer selected by Nezteb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #376 on September 05, 2024 17:31.