Soopster / Thinktecture.IdentityServer3

OpenID Connect Provider and OAuth2 Authorization Server Framework

Home Page:https://identityserver.github.io/Documentation/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Thinktecture IdentityServer3

Dev build: Build status ![Gitter](https://badges.gitter.im/Join Chat.svg)

Overview

IdentityServer is a framework and a hostable component that allows implementing single sign-on and access control for modern web applications and APIs using protocols like OpenID Connect and OAuth2. It supports a wide range of clients like mobile, web, SPAs and desktop applications and is extensible to allow integration in new and existing architectures.

Watch this for the big picture: Introduction to OpenID Connect, OAuth2 and IdentityServer.

Go to the documenation site.

OpenID Connect specification / OAuth2 specification

Getting started

IdentityServer is designed as an OWIN/Katana component. By referencing the library or nuget you get a UseIdentityServer extension method for IAppBuilder that allows setting up IdentityServer in your OWIN host:

public void Configuration(IAppBuilder app)
{
    var options = new IdentityServerOptions
    {
        SigningCertificate = Certificate.Get(),
        Factory = Factory.Create()
    };

    app.UseIdentityServer(options);
}

For more information, e.g.

  • support for MembershipReboot and ASP.NET Identity based user stores
  • support for additional Katana authentication middleware (e.g. Google, Twitter, Facebook etc)
  • support for EntityFramework based persistence of configuration
  • support for WS-Federation
  • extensibility

check out the documentation and the samples.

Related repositories

Credits

IdentityServer is built using the following great open source projects:

..and is supported by the following open source friendly companies:

...and last but not least thanks to all contributors!

About

OpenID Connect Provider and OAuth2 Authorization Server Framework

https://identityserver.github.io/Documentation/

License:Apache License 2.0


Languages

Language:C# 59.5%Language:JavaScript 35.3%Language:CSS 5.1%Language:PowerShell 0.2%Language:Smalltalk 0.0%Language:Shell 0.0%