azure active directory - Getting users groups when getting a user -
i'm trying website , running user has log in using azure ad account. user either member of 1 of 2 groups. there way within azure ad of getting group id and/or name returned claim on identity token?
you can edit manifest of app.
you can find in new portal via azure active directory -> app registrations -> app -> manifest.
then need set groupmembershipclaims
property either "securitygroup"
or "all"
.
"groupmembershipclaims": "securitygroup"
the ids returned in id tokens app. securitygroup includes aad security groups, includes office 365 groups.
Comments
Post a Comment