mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add Facebook Trigger Node (#1106)
* ⚡ Facebook trigger from webhooks Uses tokens just like the GraphQL API but this one requires an app token instead of an user access token. * ⚡ Improvements :zap Improvements * 🐛 Fix credential file name Co-authored-by: Omar Ajoue <krynble@gmail.com>
This commit is contained in:
@@ -10,7 +10,9 @@ import {
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import { OptionsWithUri } from 'request';
|
||||
import {
|
||||
OptionsWithUri,
|
||||
} from 'request';
|
||||
|
||||
export class FacebookGraphApi implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
@@ -22,7 +24,7 @@ export class FacebookGraphApi implements INodeType {
|
||||
description: 'Interacts with Facebook using the Graph API',
|
||||
defaults: {
|
||||
name: 'Facebook Graph API',
|
||||
color: '#772244',
|
||||
color: '#3B5998',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
|
||||
Reference in New Issue
Block a user