soundcloud-api-ts - v1.9.0
    Preparing search index...

    Interface SoundCloudToken

    OAuth 2.1 token response returned by SoundCloud's /oauth2/token endpoint.

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

    Properties

    access_token: string

    The OAuth 2.1 access token used to authenticate API requests

    expires_in: number

    Number of seconds until the access token expires

    refresh_token: string

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

    scope: string

    OAuth scope granted (e.g. "*" for full access)

    token_type: string

    Token type, typically "bearer"