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

    Interface SoundCloudToken

    Token response returned from SoundCloud OAuth token exchange.

    useSCAuth for client-side auth flow

    interface SoundCloudToken {
        access_token: string;
        expires_in: number;
        refresh_token: string;
        scope: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string

    The bearer token for authenticated API requests.

    expires_in: number

    Token lifetime in seconds.

    refresh_token: string

    Token used to obtain a new access token when the current one expires.

    scope: string

    OAuth scope granted.

    token_type: string

    Always "Bearer".