Add Facebook Graph API node

This commit is contained in:
Pablo Estevez
2020-04-29 21:57:36 -04:00
parent 976e02efcc
commit dd91a2c3ae
4 changed files with 436 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class GraphApi implements ICredentialType {
name = 'graphApi';
displayName = 'Graph API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}