soundcloud-api-ts-next
    Preparing search index...

    Interface FetchersConfig

    Configuration for configureFetchers.

    interface FetchersConfig {
        clientId: string;
        clientSecret: string;
        onRequest?: (telemetry: SCRequestTelemetry) => void;
        onRetry?: (info: RetryInfo) => void;
    }
    Index

    Properties

    clientId: string

    SoundCloud OAuth client ID.

    clientSecret: string

    SoundCloud OAuth client secret.

    onRequest?: (telemetry: SCRequestTelemetry) => void

    Called after every SoundCloud API request with structured telemetry.

    onRetry?: (info: RetryInfo) => void

    Called on each retry attempt.