n8n-nodes-base
Version:
Base nodes of n8n
49 lines • 1.47 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GoToWebinarOAuth2Api = void 0;
class GoToWebinarOAuth2Api {
name = 'goToWebinarOAuth2Api';
extends = ['oAuth2Api'];
displayName = 'GoToWebinar OAuth2 API';
documentationUrl = 'gotowebinar';
properties = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://api.getgo.com/oauth/v2/authorize',
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://api.getgo.com/oauth/v2/token',
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: '', // set when creating the OAuth client
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'header',
},
];
}
exports.GoToWebinarOAuth2Api = GoToWebinarOAuth2Api;
//# sourceMappingURL=GoToWebinarOAuth2Api.credentials.js.map