pl-api
    Preparing search index...

    Interface CreateApplicationParams

    interface CreateApplicationParams {
        client_name: string;
        redirect_uris: string;
        scopes?: string;
        website?: string;
    }
    Index

    Properties

    client_name: string

    String. A name for your application

    redirect_uris: string

    String. Where the user should be redirected after authorization. To display the authorization code to the user instead of redirecting to a web page, use urn:ietf:wg:oauth:2.0:oob in this parameter.

    scopes?: string

    String. Space separated list of scopes. If none is provided, defaults to read. See OAuth Scopes for a list of possible scopes.

    website?: string

    String. A URL to the homepage of your app