From 5d59adf102144499e3ed762a6c65fa006e622c99 Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Mon, 14 Feb 2022 10:06:10 -0800 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b6541711c..bf326dd07 100644 --- a/README.md +++ b/README.md @@ -304,7 +304,7 @@ services.AddSingleton(); services.AddSingleton(); ``` -### Register middleware to validate JWT +### Register authentication handler to validate JWT ```c# services.AddAuthentication(options => @@ -319,6 +319,8 @@ services.AddAuthentication(options => { options.Keys = configureOptions.Keys; options.VerifySignature = configureOptions.VerifySignature; + + // optionally customize }); ```