joseph
1
Hi,
Facebook has new permission for groups api https://developers.facebook.com/docs/graph-api/changelog/version3.0, 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.
@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