Skip to content

Commit

Permalink
Merge pull request #426 from DuendeSoftware/joe/qs-fixes
Browse files Browse the repository at this point in the history
Quickstart Fixes
  • Loading branch information
brockallen authored Feb 1, 2024
2 parents 65d9958 + 082f624 commit 5552afd
Showing 1 changed file with 3 additions and 6 deletions.
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 Expand Up @@ -428,15 +428,12 @@ The output should look like this:

![](../images/1_client_screenshot.png)

{{% notice note %}}

If you're using Visual Studio, here's how to start everything up:
1. Right click the solution and select *Set Startup Projects*
1. Right click the solution and select *Configure Startup Projects...*
2. Choose *Multiple Startup Projects* and set the action for Api and IdentityServer to Start
3. Run the solution and wait a moment for both the API and and IdentityServer to start
4. Right click the *Client* project and select Debug... Start New Instance.

{{% /notice %}}
4. Right click the *Client* project and select Debug -> Start Without Debugging.

{{% notice note %}}

Expand Down

0 comments on commit 5552afd

Please sign in to comment.