2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-03-22 12:14:45 -07:00
|
|
|
|
|
|
|
export class MicrosoftOAuth2Api implements ICredentialType {
|
|
|
|
name = 'microsoftOAuth2Api';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-07-24 08:36:17 -07:00
|
|
|
extends = ['oAuth2Api'];
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
icon = 'file:Microsoft.svg';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-03-22 12:14:45 -07:00
|
|
|
displayName = 'Microsoft OAuth2 API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'microsoft';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2022-06-13 22:27:19 -07:00
|
|
|
{
|
|
|
|
displayName: 'Grant Type',
|
|
|
|
name: 'grantType',
|
|
|
|
type: 'hidden',
|
|
|
|
default: 'authorizationCode',
|
|
|
|
},
|
2020-09-13 02:08:43 -07:00
|
|
|
//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',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-09-13 02:08:43 -07:00
|
|
|
default: 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize',
|
2020-03-22 12:14:45 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-09-13 02:08:43 -07:00
|
|
|
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',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-03-22 12:14:45 -07:00
|
|
|
default: 'response_mode=query',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-03-22 12:14:45 -07:00
|
|
|
default: 'body',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|