mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24: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',
|
||||
name: 'scope',
|
||||
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',
|
||||
|
|
Loading…
Reference in a new issue