I hope the following question makes sense:
- I manage my users in ActiveDirectory.
- I authenticate them via IdentityServer3.
- I authorize the APIs via the AD groups that the user is in (acting as security roles).
How should I set up IdentityServer3:
- Must I use my own custom UserService to access ActiveDirectory?
- and does that replace the MembershipReboot / AspNetIdentity support (or am I misunderstanding what the UserService is)?
- Or should I use one of the MembershipReboot / AspNetIdentity packages from IdentityServer3, and somehow customize them to map to ActiveDirectory (and if so, how)?