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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-03-22 12:14:45 -07:00
export class MicrosoftOAuth2Api implements ICredentialType {
name = 'microsoftOAuth2Api';
extends = ['oAuth2Api'];
icon = 'file:icons/Microsoft.svg';
2020-03-22 12:14:45 -07:00
displayName = 'Microsoft OAuth2 API';
documentationUrl = 'microsoft';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
//info about the tenantID
//https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols#endpoints
2020-03-22 12:14:45 -07:00
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'string',
default: 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize',
2020-03-22 12:14:45 -07:00
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'string',
default: 'https://login.microsoftonline.com/common/oauth2/v2.0/token',
2020-03-22 12:14:45 -07:00
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
2020-03-22 12:14:45 -07:00
default: 'response_mode=query',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
2020-03-22 12:14:45 -07:00
default: 'body',
},
];
}