I am working with Angular JS and now I need to authenticate my application with Azure AD SSO .
Currently, I implemented same with adal-angular. Now apart of my requirement I need to parse user group information form the JWT token which I got after successful authentication(I am passing this token to my backend service and there I need to parse it)
I came to know that azure adal-angular implementation is not sending group information, reference available here.
- 1-Is there any way to get user group information from current implementation?
- 2-Is there any library available rather than adal-angular?
- 3-Can I call graph API to get group information using JWT token which provided by azure adal-angular ?
Any suggestion please and thanks in advance.