Basic Authentication in ASP.NET Core

后端 未结 5 791
刺人心
刺人心 2020-12-14 13:45

Question

How can I implement Basic Authentication with Custom Membership in an ASP.NET Core web application?

Notes

5条回答
  •  攒了一身酷
    2020-12-14 14:49

    ASP.NET Security will not include Basic Authentication middleware due to its potential insecurity and performance problems.

    If you require Basic Authentication middleware for testing purposes, then please look at https://github.com/blowdart/idunno.Authentication

提交回复
热议问题