YoussefSell.IdentityServer4.MongoDB
4.1.2
dotnet add package YoussefSell.IdentityServer4.MongoDB --version 4.1.2
NuGet\Install-Package YoussefSell.IdentityServer4.MongoDB -Version 4.1.2
<PackageReference Include="YoussefSell.IdentityServer4.MongoDB" Version="4.1.2" />
paket add YoussefSell.IdentityServer4.MongoDB --version 4.1.2
#r "nuget: YoussefSell.IdentityServer4.MongoDB, 4.1.2"
// Install YoussefSell.IdentityServer4.MongoDB as a Cake Addin
#addin nuget:?package=YoussefSell.IdentityServer4.MongoDB&version=4.1.2
// Install YoussefSell.IdentityServer4.MongoDB as a Cake Tool
#tool nuget:?package=YoussefSell.IdentityServer4.MongoDB&version=4.1.2
IdentityServer4.MongoDB
IdentityServer4.MongoDB is a package that provides the Storage implementation on top of MongoDB database driver to add data persistence for IdentityServer.
Quick setup
to get started install the package using the Nuget package manager Install-Package YoussefSell.IdentityServer4.MongoDB
.
then add the following configuration to your IdentityServer4 registration:
public void ConfigureServices()
{
// ... other code
const string connectionString = @"mongodb://localhost:27017";
const string databaseName = "IdentityServer";
services.AddIdentityServer()
.AddTestUsers(TestUsers.Users)
.AddDeveloperSigningCredential()
// add the configuration store
.AddConfigurationStore(databaseName, connectionString)
// add the operational store
.AddOperationalStore(databaseName, connectionString);
// ... other code
}
both methods have an overload that takes an action to configure your database and collections.
you can also find a quick starter template (here) that you can leverage to spin a new project.
the project has been built using the same concepts found in the EF core implementation of IdentityServer storage. this why you will find the same configuration if you already used EF core.
a more detailed configuration can be found on this blog post (Using MongoDB as a data store for IdentityServer4)
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.1 |
-
.NETCoreApp 3.1
- IdentityServer4 (>= 4.1.2)
- MongoDB.Driver (>= 2.12.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.1.2 | 2,502 | 7/14/2021 |