masto
    Preparing search index...

    Interface CreateAppParams

    interface CreateAppParams {
        clientName: string;
        redirectUris: string | readonly string[];
        scopes: string;
        website?: string | null;
    }
    Index

    Properties

    clientName: string

    A name of your application

    redirectUris: string | readonly 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

    Space separated list of scopes. If none is provided, defaults to read.

    website?: string | null

    URL to the homepage of your app