BrowserAuthOptions type
Configuration 개체에서 인증 옵션을 구성하려면 이 옵션을 사용합니다.
type BrowserAuthOptions = {
OIDCOptions?: OIDCOptions
authority?: string
authorityMetadata?: string
azureCloudOptions?: AzureCloudOptions
clientCapabilities?: string[]
clientId: string
cloudDiscoveryMetadata?: string
encodeExtraQueryParams?: boolean
instanceAware?: boolean
knownAuthorities?: string[]
navigateToLoginRequestUrl?: boolean
onRedirectNavigate?: (url: string) => boolean | void
postLogoutRedirectUri?: string | null
protocolMode?: ProtocolMode
redirectUri?: string
skipAuthorityMetadataCache?: boolean
supportsNestedAppAuth?: boolean
verifySSO?: boolean
}