2020-06-03 07:24:17 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-12-23 03:48:53 -08:00
|
|
|
const scopes = [
|
|
|
|
'files.content.write',
|
|
|
|
'files.content.read',
|
|
|
|
'sharing.read',
|
|
|
|
];
|
2020-06-03 07:24:17 -07:00
|
|
|
|
|
|
|
export class DropboxOAuth2Api implements ICredentialType {
|
|
|
|
name = 'dropboxOAuth2Api';
|
|
|
|
extends = [
|
|
|
|
'oAuth2Api',
|
|
|
|
];
|
|
|
|
displayName = 'Dropbox OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'dropbox';
|
2020-06-03 07:24:17 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'https://www.dropbox.com/oauth2/authorize',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'https://api.dropboxapi.com/oauth2/token',
|
|
|
|
required: true,
|
2020-10-01 05:01:39 -07:00
|
|
|
},
|
|
|
|
{
|
2020-06-03 07:24:17 -07:00
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
2020-12-23 03:48:53 -08:00
|
|
|
default: scopes.join(' '),
|
2020-06-03 07:24:17 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
2020-12-23 03:48:53 -08:00
|
|
|
default: 'token_access_type=offline',
|
2020-06-03 07:24:17 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'header',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|