Skip to content

Fully functioning finished sample code for my Securing ASP.NET Core 3 with OAuth2 and OpenID Connect course

License

Notifications You must be signed in to change notification settings

garyboyle/OpenID-Connect

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenID Connect

This is based on Kevin Dockx's Securing ASP.NET Core 3 with OAuth 2 and OpenID Connect project.

A few tweaks were needed to get it to run on MacOS.

Namely the datasource had to change, as LocalDB is not support on MacOS.

An alternative db source can be created with the following command in Docker.

docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=yourStrong(!)Password' -p 1433:1433 -d mcr.microsoft.com/mssql/server:2017-latest

And then, in appsettings.json, the ImageGalleryDBConnectionString value should be updated to Server=localhost;Database=ImageGalleryDB;User Id=SA;Password=yourStrong(!)Password


NOTE: Below is the original README.md contents

Securing ASP.NET Core 3 with OAuth 2 and OpenID Connect

Fully functioning finished sample code for my Securing ASP.NET Core 3 with OAuth2 and OpenID Connect course. Make sure you start up / deploy the IDP, Client & API project when running the finished solution.

The accompanying course can be watched here: https://app.pluralsight.com/library/courses/securing-aspnet-core-3-oauth2-openid-connect/

About

Fully functioning finished sample code for my Securing ASP.NET Core 3 with OAuth2 and OpenID Connect course

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 91.0%
  • HTML 7.7%
  • Other 1.3%