Interface BackendApiOptions

interface BackendApiOptions {
    apiKey?: string;
    backendHost: string;
    headers?: {
        [key: string]: string;
    };
    proxyHost?: string;
    webSocketHost?: string;
    webSocketOptions?: BackendWebSocketOptions;
}

Properties

apiKey?: string

The Nevermined API Key. This key identify your user and is required to interact with the Nevermined API. You can get your API key by logging in to the Nevermined App.

backendHost: string

The host of the backend server

headers?: {
    [key: string]: string;
}

Additional headers to send with the requests

Type declaration

  • [key: string]: string
proxyHost?: string

The host of the Nevermined Proxy

webSocketHost?: string

The host of the websocket server

webSocketOptions?: BackendWebSocketOptions

Configuration of the websocket connection