Display conditions
Permissions

Rate this page:

Remotes

When using Connect or external authentication, the external domains that the app communicates with are listed in the remotes section of the manifest.yml file, and are referenced by key.

PropertyTypeRequiredDescription
keystringYes

A key for the remote, which other modules can refer to. Must be unique within the list of remotes and have a maximum of 23 characters.

Regex: ^[a-zA-Z0-9_-]+$

baseUrlstringYesBase URL of the remote resource.

Update the manifest file

Modifying the remote entries results in a major version upgrade of your app upon deploy. Your app users are again be required to consent to your app's permissions.

Example

1
2
remotes:
  - key: connect-app-server
    baseUrl: https://hello-world-app.example.com
  - key: google-apis
    baseUrl: https://www.googleapis.com

Rate this page: