2020-06-23 20:29:47 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-06-23 20:29:47 -07:00
|
|
|
} from 'n8n-workflow';
|
2020-06-16 17:46:38 -07:00
|
|
|
|
|
|
|
export class ZoomOAuth2Api implements ICredentialType {
|
|
|
|
name = 'zoomOAuth2Api';
|
|
|
|
extends = ['oAuth2Api'];
|
|
|
|
displayName = 'Zoom OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'zoom';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-16 17:46:38 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
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',
|
2021-06-12 09:39:55 -07:00
|
|
|
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',
|
2021-06-12 09:39:55 -07:00
|
|
|
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',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-10-22 06:46:03 -07:00
|
|
|
default: '',
|
2020-06-16 17:46:38 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-10-22 06:46:03 -07:00
|
|
|
default: 'header',
|
|
|
|
},
|
2020-06-16 17:46:38 -07:00
|
|
|
];
|
|
|
|
}
|