Skip to content

Commit

Permalink
Fix typo in code in qs sample
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Feb 1, 2024
1 parent fc6714b commit 082f624
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ builder.Services.AddAuthentication()
.AddJwtBearer(options =>
{
options.Authority = "https://localhost:5001";
options.TokenValidationParameters = false;
options.TokenValidationParameters.ValidateAudience = false;
});
builder.Services.AddAuthorization();
```
Expand Down

0 comments on commit 082f624

Please sign in to comment.