Has anyone tried using IdentityManager with vNext?
I'm having problems with the app.UseIdentityManager(IdentityManagerOptions)
extension method.
It doesn't exist.
So I tried using the extension method made for UseIdentityServer
(found here) by changing all the server related aspects to manager.
When I do that, I get the System.NullReferenceException
in line 43.
Any kind of advice on how to go about with the extension method will be really appreciated
I'm using vNext and I've noticed that many things have changed and will continue to change.
For my own needs I've been able to get identity up and running fairly easily and there are two steps that I've had to take to get it running properly. What I've done should work for you as well.
In your StartUp.cs you will need to make sure you add the following to the ConfigureServices method:
In addition to that you will need to configure your app to use identity and to do this you need to do the following in your Configure() method: