mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
39 lines
932 B
TypeScript
39 lines
932 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MicrosoftOAuth2Api implements ICredentialType {
|
|
name = 'microsoftOAuth2Api';
|
|
extends = [
|
|
'oAuth2Api',
|
|
];
|
|
displayName = 'Microsoft OAuth2 API';
|
|
properties = [
|
|
{
|
|
displayName: 'Authorization URL',
|
|
name: 'authUrl',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/authorize',
|
|
},
|
|
{
|
|
displayName: 'Access Token URL',
|
|
name: 'accessTokenUrl',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/token',
|
|
},
|
|
{
|
|
displayName: 'Auth URI Query Parameters',
|
|
name: 'authQueryParameters',
|
|
type: 'hidden' as NodePropertyTypes,
|
|
default: 'response_mode=query',
|
|
},
|
|
{
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'hidden' as NodePropertyTypes,
|
|
default: 'body',
|
|
},
|
|
];
|
|
}
|