You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 15, 2018. It is now read-only.
I have a clean MVC project (no MS identity framework) with a working version of MembershipReboot. I've now want to integrate IdentityManager. My question is, do I need the files in the config folder (from the host example) as I'm only using MR straight out of the box as I can't seem to get IM working?
This is in my startup.cs
app.Map("/idm", idm =>
{
var factory = new IdentityManagerServiceFactory();
factory.Configure("MembershipReboot");
var options = new IdentityManagerOptions
{
Factory = factory
};
app.Map("/idm", _ => { _.UseIdentityManager(options); });
});
The text was updated successfully, but these errors were encountered:
Sorry -- this issue fell thru the cracks. Since I'm so late to this issue, I imagine you already sorted it out.
You do need to configure the IdentityManagerService on the factory. The rest are just the dependencies in DI for the IdentityManagerService. So yes, you'll typically need to configure something like that.
Hi,
I have a clean MVC project (no MS identity framework) with a working version of MembershipReboot. I've now want to integrate IdentityManager. My question is, do I need the files in the config folder (from the host example) as I'm only using MR straight out of the box as I can't seem to get IM working?
This is in my startup.cs
The text was updated successfully, but these errors were encountered: