Stay organized with collections
Save and categorize content based on your preferences.
FirebaseAdmin.Auth.Providers.OidcProviderConfig
Represents an OIDC auth provider configuration.
Summary
See OpenID Connect.
Inheritance
Inherits from:
FirebaseAdmin.Auth.Providers.AuthProviderConfig
Properties
|
ClientId
|
string
Gets the client ID used to confirm the audience of an OIDC provider's ID token.
|
ClientSecret
|
string
Gets the client secret, which is used to verify Code response types.
|
CodeResponseType
|
bool
Gets a value indicating whether an Code type response type will be provided.
|
IdTokenResponseType
|
bool
Gets a value indicating whether an ID Token response type will be provided.
|
Issuer
|
string
Gets the issuer used to match the issuer of the ID token and to determine the corresponding OIDC discovery document, eg.
|
Properties
ClientId
string ClientId
Gets the client ID used to confirm the audience of an OIDC provider's ID token.
ClientSecret
string ClientSecret
Gets the client secret, which is used to verify Code response types.
CodeResponseType
bool CodeResponseType
Gets a value indicating whether an Code type response type will be provided.
IdTokenResponseType
bool IdTokenResponseType
Gets a value indicating whether an ID Token response type will be provided.
Issuer
string Issuer
Gets the issuer used to match the issuer of the ID token and to determine the corresponding OIDC discovery document, eg.
/.well-known/openid-configuration
. This is needed for the following:
- To verify the provided issuer.
- To determine the authentication/authorization endpoint during the OAuth
id_token
authentication flow.
- To retrieve the public signing keys from
jwks_uri
, which is used to verify the signature of the ID token.
- To determine the
claims_supported
, which are passed through in the additional user info response.
ID token validation is performed as defined in OpenID Connect.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-03-24 UTC.
[null,null,["Last updated 2022-03-24 UTC."],[],[],null,["# FirebaseAdmin.Auth.Providers.OidcProviderConfig Class Reference\n\nFirebaseAdmin.Auth.Providers.OidcProviderConfig\n===============================================\n\nRepresents an OIDC auth provider configuration.\n\nSummary\n-------\n\nSee [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0-final.html).\n\n### Inheritance\n\nInherits from: [FirebaseAdmin.Auth.Providers.AuthProviderConfig](/docs/reference/admin/dotnet/class/firebase-admin/auth/providers/auth-provider-config)\n\n| ### Properties ||\n|---------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| [ClientId](#class_firebase_admin_1_1_auth_1_1_providers_1_1_oidc_provider_config_1a2650e328d70163bfa5e95545238759a3) | `string` Gets the client ID used to confirm the audience of an OIDC provider's ID token. |\n| [ClientSecret](#class_firebase_admin_1_1_auth_1_1_providers_1_1_oidc_provider_config_1af2973c88a0cf09d70a5f8b397c861fbc) | `string` Gets the client secret, which is used to verify Code response types. |\n| [CodeResponseType](#class_firebase_admin_1_1_auth_1_1_providers_1_1_oidc_provider_config_1a4075c0052f0358ccd0707dd6e902eecc) | `bool` Gets a value indicating whether an Code type response type will be provided. |\n| [IdTokenResponseType](#class_firebase_admin_1_1_auth_1_1_providers_1_1_oidc_provider_config_1a2a3d77fb6fd85ad5500cb2d1f28962ef) | `bool` Gets a value indicating whether an ID Token response type will be provided. |\n| [Issuer](#class_firebase_admin_1_1_auth_1_1_providers_1_1_oidc_provider_config_1a2978610f6b74c6fa54899bdb0b3bfd1d) | `string` Gets the issuer used to match the issuer of the ID token and to determine the corresponding OIDC discovery document, eg. |\n\nProperties\n----------\n\n### ClientId\n\n```text\nstring ClientId\n``` \nGets the client ID used to confirm the audience of an OIDC provider's ID token. \n\n### ClientSecret\n\n```text\nstring ClientSecret\n``` \nGets the client secret, which is used to verify Code response types. \n\n### CodeResponseType\n\n```text\nbool CodeResponseType\n``` \nGets a value indicating whether an Code type response type will be provided. \n\n### IdTokenResponseType\n\n```text\nbool IdTokenResponseType\n``` \nGets a value indicating whether an ID Token response type will be provided. \n\n### Issuer\n\n```text\nstring Issuer\n``` \nGets the issuer used to match the issuer of the ID token and to determine the corresponding OIDC discovery document, eg.\n\n`/.well-known/openid-configuration`. This is needed for the following:\n\n- To verify the provided issuer.\n- To determine the authentication/authorization endpoint during the OAuth `id_token` authentication flow.\n- To retrieve the public signing keys from `jwks_uri`, which is used to verify the signature of the ID token.\n- To determine the `claims_supported`, which are passed through in the additional user info response.\n\n\u003cbr /\u003e\n\nID token validation is performed as defined in [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0.html#IDTokenValidation)."]]