2020-07-03 02:22:39 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
export class BitlyOAuth2Api implements ICredentialType {
|
|
|
|
name = 'bitlyOAuth2Api';
|
|
|
|
displayName = 'Bitly OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'bitly';
|
2020-07-03 02:22:39 -07:00
|
|
|
extends = [
|
|
|
|
'oAuth2Api',
|
|
|
|
];
|
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'https://bitly.com/oauth/authorize',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'https://api-ssl.bitly.com/oauth/access_token',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client ID',
|
|
|
|
name: 'clientId',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client Secret',
|
|
|
|
name: 'clientSecret',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
description: 'For some services additional query parameters have to be set which can be defined here.',
|
2020-07-08 12:15:25 -07:00
|
|
|
placeholder: '',
|
2020-07-03 02:22:39 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2020-07-08 12:15:25 -07:00
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'body',
|
2020-07-03 02:22:39 -07:00
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|