0

I have a Core 2.0 MVC project and I am stuck on logging. Is there a way to implement a Windows AD (Active Directory) Authentication and Authorization on the .NET Core 2.0 Framework? I've seen this article using IIS, however I'm looking for a more programmable way. (lots of examples for MVC4 and 5, however I couldn't find any for Core 2.0)

noobed
  • 1,329
  • 11
  • 24
  • You meant authentication using Active Directory, not Windows Authentication right? The idea would be to use form authentication on the front, and then use active directory as user store at the back. I just answered one of the questions here [https://stackoverflow.com/questions/46853920/net-core-authentication]. Let me know if that's what you're looking for. – David Liang Oct 20 '17 at 17:43
  • @DavidLiang I'll take a look at it first thing tomorrow morning! :) – noobed Oct 20 '17 at 17:55
  • @DavidLiang that helped me. You could give it as a reference answer and I'll approve it! :) – noobed Oct 23 '17 at 16:02

1 Answers1

1

The idea is to use form authentication on the front, and use Active Directory as user store on the back.

I answered a similar question here: https://stackoverflow.com/a/46854212/2410655

David Liang
  • 20,385
  • 6
  • 44
  • 70