mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
fix(Facebook Lead Ads Trigger Node): Fix issue with missing scope for business management (#7616)
Github issue / Community forum post (link here to close automatically): Community: https://community.n8n.io/t/facebook-lead-trigger-issue-with-permissions/32500 GH Issue: https://github.com/n8n-io/n8n/issues/7615
This commit is contained in:
parent
3a776e0132
commit
32b85ba2fe
|
@ -34,7 +34,8 @@ export class FacebookLeadAdsOAuth2Api implements ICredentialType {
|
||||||
displayName: 'Scope',
|
displayName: 'Scope',
|
||||||
name: 'scope',
|
name: 'scope',
|
||||||
type: 'hidden',
|
type: 'hidden',
|
||||||
default: 'leads_retrieval pages_show_list pages_manage_metadata pages_manage_ads',
|
default:
|
||||||
|
'leads_retrieval pages_show_list pages_manage_metadata pages_manage_ads business_management',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Auth URI Query Parameters',
|
displayName: 'Auth URI Query Parameters',
|
||||||
|
|
Loading…
Reference in a new issue