IdentityServer4 - How to Implement Impersonation

前端 未结 3 564
挽巷
挽巷 2021-02-04 12:28

I have a requirement of allowing our internal support users to impersonate our customer users.

I\'m currently using IdentityServer4, Implicit Flow and OIDC Client.

3条回答
  •  温柔的废话
    2021-02-04 12:36

    you can implement IResourceOwnerValidation and validate your support users in your own way. for example generate a code for specific user and give it to support user, then in your implementation check your password with that code too.

提交回复
热议问题