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

62 lines
1.2 KiB
TypeScript
Raw Normal View History

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class MediumOAuth2Api implements ICredentialType {
name = 'mediumOAuth2Api';
extends = [
'oAuth2Api',
];
displayName = 'Medium OAuth2 API';
documentationUrl = 'medium';
properties: INodeProperties[] = [
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://medium.com/m/oauth/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://medium.com/v1/tokens',
required: true,
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: 'basicProfile,publishPost,listPublications',
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
required: true,
},
{
displayName: 'Client Secret',
name: 'clientSecret',
type: 'string',
default: '',
required: true,
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'body',
},
];
}