ART Framework API Docs
    Preparing search index...

    Interface ZyntopiaOAuthConfig

    Configuration specific to Zyntopia OAuth strategy

    interface ZyntopiaOAuthConfig {
        clientId: string;
        clientSecret: string;
        customHeaders?: Record<string, string>;
        environment?: "production" | "staging" | "development";
        scopes?: string;
        tokenEndpoint?: string;
        tokenRefreshBufferMs?: number;
        tokenTimeoutMs?: number;
    }
    Index

    Properties

    clientId: string

    Client ID for Zyntopia OAuth authentication

    clientSecret: string

    Client secret for Zyntopia OAuth authentication

    customHeaders?: Record<string, string>

    Additional custom headers for Zyntopia API requirements

    environment?: "production" | "staging" | "development"

    Optional environment ('production' | 'staging' | 'development')

    scopes?: string

    Optional custom scopes (defaults to Zyntopia's standard scopes)

    tokenEndpoint?: string

    Optional custom token endpoint (defaults to Zyntopia's standard endpoint)

    tokenRefreshBufferMs?: number

    Optional custom buffer time before token expiry to trigger refresh

    tokenTimeoutMs?: number

    Optional custom timeout for token requests in milliseconds