lti-tool Documentation
    Preparing search index...

    Interface LTIClient

    Represents an LTI (Learning Tools Interoperability) platform configuration. Contains all necessary endpoints and identifiers for LTI 1.3 integration.

    interface LTIClient {
        authUrl: string;
        clientId: string;
        deployments: LTIDeployment[];
        id: string;
        iss: string;
        jwksUrl: string;
        name: string;
        tokenUrl: string;
    }
    Index

    Properties

    authUrl: string

    Platform's auth endpoint

    clientId: string

    Your app's client ID on this platform

    deployments: LTIDeployment[]

    Array of deployment IDs associated with this platform

    id: string

    Unique identifier for the client

    iss: string

    Platform issuer (unique identifier)

    jwksUrl: string

    Platform's JWKS endpoint

    name: string

    human-readable name for the platform

    tokenUrl: string

    Platform's token endpoint