n8n/packages/nodes-base/credentials/ZoomOAuth2Api.credentials.ts

51 lines
983 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-06-16 17:46:38 -07:00
export class ZoomOAuth2Api implements ICredentialType {
name = 'zoomOAuth2Api';
2020-06-16 17:46:38 -07:00
extends = ['oAuth2Api'];
2020-06-16 17:46:38 -07:00
displayName = 'Zoom OAuth2 API';
documentationUrl = 'zoom';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
2020-06-16 17:46:38 -07:00
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
2020-10-22 06:46:03 -07:00
default: 'https://zoom.us/oauth/authorize',
2020-06-16 17:46:38 -07:00
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
2020-10-22 06:46:03 -07:00
default: 'https://zoom.us/oauth/token',
2020-06-16 17:46:38 -07:00
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
2020-10-22 06:46:03 -07:00
default: '',
2020-06-16 17:46:38 -07:00
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
2020-10-22 06:46:03 -07:00
default: '',
2020-06-16 17:46:38 -07:00
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
2020-10-22 06:46:03 -07:00
default: 'header',
},
2020-06-16 17:46:38 -07:00
];
}