@akamai/openapi-ts
    Preparing search index...

    Type Alias OauthClientWritable

    A third-party application registered to Linode that users may log into with their Linode account through our authentication server at login.linode.com. Using an OAuth Client, a third-party developer may be given access to some, or all, of a User's account for the purposes of their application.

    type OauthClientWritable = {
        label?: string;
        public?: boolean;
        redirect_uri?: string;
    }
    Index

    Properties

    label?: string

    Filterable The name of this application. This will be presented to users when they are asked to grant it access to their Account.

    public?: boolean

    Filterable If this is a public or private OAuth Client. Public clients have a slightly different authentication workflow than private clients. See the OAuth spec for more details.

    redirect_uri?: string

    The location a successful log in from login.linode.com should be redirected to for this client. The receiver of this redirect should be ready to accept an OAuth exchange code and finish the OAuth exchange.