Applications
Create and manage OAuth 1 or OAuth 2 applications
Create a new application
Property
Description
await exh.auth.applications.create({
type: 'oauth1',
name: 'myAppName',
description: 'myAppDescription'
});await exh.auth.applications.create({
type: 'oauth2',
name: 'myAppName',
description: 'myAppDescription',
redirectUris: [''],
confidential: false
});Last updated