From 2a4a7a3f1c62e7f5675ffb9f38da6f53db36054a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 16 Jul 2023 14:21:59 +0200 Subject: [PATCH] Fix typo in README (#1) `conatined` -> `contained` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ecc95d..dab4d8d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ https://devblogs.microsoft.com/dotnet/improvements-auth-identity-aspnetcore-8/ In .NET 8 preview 6, we've added new APIs to allow exposing endpoints to register, login and refresh bearer tokens. This is a simple API -that returns tokens (or sets cookies) that is optimized usage with 1st party applications (no delegated authentication). The tokens are self conatined, and generated using the +that returns tokens (or sets cookies) that is optimized usage with 1st party applications (no delegated authentication). The tokens are self contained, and generated using the same technique as cookie authentication. **These are NOT JWTs**, they are opaque tokens. To make issued tokens work across servers, [data protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-7.0) needs to be configured with shared storage.