Hi @lena,
Welcome to the Community!
Thank you for posting this. Our Engineering team has this as a task in their work log.
In the meantime, there is a workaround you could do to configure these new scopes for your Facebook Connection.
You can patch in the pages_manage_metadata permission using the Management API - Auth0 Management API v2
You can find your Facebook connection’s ID by using the get all connections endpoint: Auth0 Management API v2
Note: Changes to the ‘options’ object in the JSON will overwrite all the existing options.
Here is an example body for the request to the update a connection
request ("pages_manage_metadata":true
is at the bottom):
{"options": {
"email": false,
"scope": "public_profile",
"ads_read": false,
"client_id": "<YOUR_CLIENT_ID>",
"user_link": false,
"user_likes": false,
"user_posts": false,
"read_stream": false,
"user_events": false,
"user_gender": false,
"user_groups": false,
"user_photos": false,
"user_status": false,
"user_videos": false,
"manage_pages": false,
"read_mailbox": false,
"user_friends": false,
"client_secret": "<YOUR_CLIENT_SECRET>",
"publish_pages": false,
"publish_video": false,
"read_insights": false,
"user_birthday": false,
"user_hometown": false,
"user_location": false,
"ads_management": false,
"public_profile": true,
"user_age_range": false,
"leads_retrieval": false,
"pages_messaging": false,
"pages_show_list": false,
"publish_actions": false,
"pages_manage_cta": false,
"publish_to_groups": false,
"user_tagged_places": false,
"business_management": false,
"read_page_mailboxes": false,
"user_managed_groups": false,
"manage_notifications": false,
"groups_access_member_info": false,
"allow_context_profile_field": false,
"pages_messaging_phone_number": false,
"pages_manage_instant_articles": false,
"pages_messaging_subscriptions": false,
"read_audience_network_insights": false,
"pages_manage_metadata":true
}
}