ADK for TypeScript: API Reference
    Preparing search index...

    Interface OpenIdConnectWithConfig

    OpenIdConnectWithConfig extends OpenIdSecurityScheme with additional configuration options.

    interface OpenIdConnectWithConfig {
        authorizationEndpoint: string;
        grantTypesSupported?: string[];
        revocationEndpoint?: string;
        scopes?: string[];
        tokenEndpoint: string;
        tokenEndpointAuthMethodsSupported?: string[];
        userinfoEndpoint?: string;
    }

    Hierarchy

    • OpenIdSecurityScheme
      • OpenIdConnectWithConfig

    Properties

    authorizationEndpoint: string
    grantTypesSupported?: string[]
    revocationEndpoint?: string
    scopes?: string[]
    tokenEndpoint: string
    tokenEndpointAuthMethodsSupported?: string[]
    userinfoEndpoint?: string