New Facebook permissions

Hi,

Facebook has new permission for groups api v3.0 - Graph API - Documentation - Meta for Developers, namely groups_access_member_info and publish_to_groups. I wonder when will Auth0 add these 2 permissions to the Facebook connection option?

Thanks,
Joseph

Hey,

Can we get an ETA on this? thanks.

:wave: @system1 I currently do not have an ETA on this.

I believe we may be able to pass these within the connectionScopes . If you’re using Lock something like :

   var lockOptions = {
      ...
      auth: {
      ...
      connectionScopes: {
             'facebook': ['groups_access_member_info', 'publish_to_groups'],
                ..
       }
     }
  };
1 Like