DEV Community

Cover image for Setting up an Authorization Server with OpenIddict - Part I - Introduction
Robin van der Knaap
Robin van der Knaap

Posted on • Updated on

Setting up an Authorization Server with OpenIddict - Part I - Introduction

This article is part of a series called Setting up an Authorization Server with OpenIddict. The articles in this series will guide you through the process of setting up an OAuth2 + OpenID Connect authorization server on the the ASPNET Core platform using OpenIddict.

GitHub logo robinvanderknaap / authorization-server-openiddict

Authorization Server implemented with OpenIddict.


Setting up an authorization server allows you to support token-based authentication and authorization. It also allows you to authenticate users for all your applications in one central place, Single Sign-On(SSO).

An authorization server can offer one or multiple authentication methods simultaneously, like local username-password but also external identity providers such as Google, Facebook or ADFS.

By implementing OAuth2 and OpenID Connect you are able to facilitate multiple authorization scenario's: Web applications, desktop applications, machine-to-machine communication and even authorization for living room devices. Both Oauth2 and OpenID Connect are industry standards.

IdentityServer

For over a decade the go-to project in .NET for implementing a secure token service and later OAuth2 + OpenID Connect was IdentityServer. Lately, the creators/maintainers of IdentityServer decided to dual license future versions of IdentityServer. Now unless you are working on an open-source project you will have to pay for a commercial license.

Although, paying for good software shouldn't be an issue for a lot of projects or companies, I went out to look for an alternative anyway.

OpenIddict

An alternative for IdentityServer is OpenIddict. OpenIddict provides a solution to implement an OpenID Connect server in any ASP.NET Core 2.1, 3.1 and 5.0 application, and starting with OpenIddict 3.0, any ASP.NET 4.x or OWIN application too.

OpenIddict is little bit more low-level than IdentityServer. Identity Server gives you a running solution out-of-the-box, where for OpenIddict to work you need to implement some details yourself, like creating claim identities and setting up the correct endpoints.

In this article we will use OpenIddict to implement our Authorization Server. We will implement the Client Credentials Flow, the Authorization Code Flow and setup refresh tokens as an example. We will also demonstrate how to leverage OpenID Connect to retrieve user information.

OAuth2 and OpenID Connect

OAuth2 and OpenID Connect can be confusing at times, at least to me it is.

It helped me to view an Authorization Server as just another web application. It's an application where you can login with a username-password combination or with some other external provider. Up to this point, nothing is different from any other web applications we have build.

After setting up authentication we can implement OAuth2 and OpenID Connect flows (this is where OpenIddict comes into play). These flows are leveraged by other applications (clients), basically asking 'can I do some stuff on behalf of this user?'.

To answer this question, users are first redirected to the Authorization Server by the clients. The user will authenticate himself if not already authenticated (SSO). After that, the user is asked if the client is allowed to make requests on behalf of the user. If yes, the external application receives an access token to make requests in the user's behalf.

Besides the access token (OAuth2), a separate identity token (OpenID Connect) can be issued. The identity token can be used by clients to extract user information.

Next

In the next article we will start by creating a new ASPNET Core project and implement authentication as the first step toward a full-blown Authorization Server.

Top comments (5)

Collapse
 
enissay profile image
Enissay

It would be nice to make a refresh for .Net8

Collapse
 
mahmoudalaskalany profile image
Mahmoud Alaskalany

is it free for .net core 5

Collapse
 
robinvanderknaap profile image
Robin van der Knaap

Yes

Collapse
 
keatkeat87 profile image
keatkeat87

Really good article and examples. It saves me so much time.Thank for sharing.

Collapse
 
kev4ever profile image
Kevin van Schaijk

Great article, very helpful!