masto
    Preparing search index...

    Interface Application

    Represents an application that interfaces with the REST API to access accounts or post statuses.

    interface Application {
        name: string;
        vapidKey?: string | null;
        website?: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string

    The name of your application.

    vapidKey?: string | null

    Used for Push Streaming API. Returned with POST /api/v1/apps. Equivalent to PushSubscription#server_key

    website?: string | null

    The website associated with your application.