Applications

Create and manage OAuth 1 or OAuth 2 applications

Applications represent your mobile, native, web apps or even a script that can communicate with an Extra Horizon environment. Any token used for authenticating with your Extra Horizon cluster will be linked to an application.

Before you can get started with building any frontend app on top of Extra Horizon you will need to create an app.

Default applications When launching a new cluster two default applications are created by us:

  1. ExH Control center: An OAuth 2 app that gives our control center (available on app.extrahorizon.com) the ability to communicate with your cluster. You as an admin can use this app to explore and manage your cluster.

  2. CLI: An OAuth 1 application that you can use when installing our CLI in order to send configurations to your cluster. Credentials are provided to your cluster manager during onboarding.

Create a new application

You can create two types of applications: OAuth 1 applications or OAuth 2 applications.

await exh.auth.applications.create({
  type: 'oauth1',
  name: 'myAppName',
  description: 'myAppDescription'
});

Last updated