2020-04-29 18:57:36 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-04-29 18:57:36 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
2020-05-02 07:54:21 -07:00
|
|
|
export class FacebookGraphApi implements ICredentialType {
|
|
|
|
name = 'facebookGraphApi';
|
|
|
|
displayName = 'Facebook Graph API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'facebookGraph';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-04-29 18:57:36 -07:00
|
|
|
{
|
|
|
|
displayName: 'Access Token',
|
|
|
|
name: 'accessToken',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-04-29 18:57:36 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|