From bd4ada1130ce562e510ec1da56870e25b688df39 Mon Sep 17 00:00:00 2001 From: Arnaud Dagnelies Date: Fri, 5 Jul 2024 07:39:42 +0000 Subject: [PATCH] renaming --- _config.yml | 2 +- getting_started/dot_net.md | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/_config.yml b/_config.yml index 1428d9f..8c4bd81 100644 --- a/_config.yml +++ b/_config.yml @@ -13,7 +13,7 @@ navbar-links: - Javascript - Vanilla: getting_started/javascript_spa - Python - FastAPI: https://github.com/passwordless-id/fast-api-demo - Java - Spring Boot: https://github.com/passwordless-id/spring-boot-demo - - .Net / C#: getting_started/dot_net + - C# - ASP.NET: getting_started/dot_net - Want more?: getting_started/want_more Docs: - The "big picture": docs/1_big_picture diff --git a/getting_started/dot_net.md b/getting_started/dot_net.md index 9a22285..50378df 100644 --- a/getting_started/dot_net.md +++ b/getting_started/dot_net.md @@ -1,13 +1,11 @@ -Getting started with .Net -========================= +Getting started with ASP.NET +============================ > Contributed by [@moberauer](https://github.com/moberauer) -# Passwordless.ID - ASP.NET Core Demo +This [example repository](https://github.com/moberauer/passwordless.id-ASP.NET-Core-Demo) shows an integration between [ASP.NET Core](https://dotnet.microsoft.com/en-us/apps/aspnet) and [Passwordless.ID](https://passwordless.id). -> This [example repository](https://github.com/moberauer/passwordless.id-ASP.NET-Core-Demo) shows an integration between [ASP.NET Core](https://dotnet.microsoft.com/en-us/apps/aspnet) and [Passwordless.ID](https://passwordless.id). -> -> The project uses the .NET web sdk and just one NuGet package needs to be installed: `Microsoft.AspNetCore.Authentication.OpenIdConnect` +The project uses the .NET web sdk and just one NuGet package needs to be installed: `Microsoft.AspNetCore.Authentication.OpenIdConnect` Using the OpenIdConnect SDK, set the default authentication scheme to OpenId, configure it to use the authoriozation code flow, the clientId and the metadata address provided by [Passwordless.ID](https://passwordless.id). Then we also add an external cookie scheme to store the user information once sign in via [Passwordless.ID](https://passwordless.id) was successful.