Credentials used in auth function

interface AuthInfo {
    identifier: string;
    name: string;
    password: string;
    redirect: string;
    username: string;
}

Properties

identifier: string

Extension identifier

name: string

Extension display name

password: string

Value of password option (will be empty string if none defined)

redirect: string

An appropriate value to use as the redirection URL in authorization flows for this extension. Example output: http://localhost:58906/callback/com.pilotmoon.popclip.extension.todoist/auth

username: string

Value of username option (will be empty string if none defined)