Rate this page:
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
.
Property | Type | Required | Description |
---|---|---|---|
key | string | Yes | 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: |
baseUrl | string | Yes | Base URL of the remote resource. |
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.
1 2remotes: - key: connect-app-server baseUrl: https://hello-world-app.example.com - key: google-apis baseUrl: https://www.googleapis.com
Rate this page: