mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Facebook Lead Ads Trigger Node): Fix issue with optional fields (#11692)
This commit is contained in:
@@ -33,7 +33,7 @@ export async function facebookApiRequest(
|
||||
qs,
|
||||
body,
|
||||
gzip: true,
|
||||
uri: `https://graph.facebook.com/v17.0${resource}`,
|
||||
uri: `https://graph.facebook.com/v21.0${resource}`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
@@ -89,7 +89,7 @@ export async function facebookAppApiRequest(
|
||||
method,
|
||||
qs,
|
||||
gzip: true,
|
||||
uri: `https://graph.facebook.com/v17.0${resource}`,
|
||||
uri: `https://graph.facebook.com/v21.0${resource}`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
@@ -181,7 +181,7 @@ export async function facebookPageApiRequest(
|
||||
qs,
|
||||
body,
|
||||
gzip: true,
|
||||
uri: `https://graph.facebook.com/v17.0${resource}`,
|
||||
uri: `https://graph.facebook.com/v21.0${resource}`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user