diff --git a/IdentityServer/v7/docs/content/quickstarts/3_api_access.md b/IdentityServer/v7/docs/content/quickstarts/3_api_access.md index 21ec5a4e..5eb3587c 100644 --- a/IdentityServer/v7/docs/content/quickstarts/3_api_access.md +++ b/IdentityServer/v7/docs/content/quickstarts/3_api_access.md @@ -87,8 +87,6 @@ builder.Services.AddAuthentication(options => options.ClientSecret = "secret"; options.ResponseType = "code"; - options.SaveTokens = true; - options.Scope.Clear(); options.Scope.Add("openid"); options.Scope.Add("profile"); @@ -155,6 +153,13 @@ And update *src/WebClient/Pages/CallApi.cshtml* as follows:
@Model.Json``` +Also add a link to the new page in *src/WebClient/Shared/_Layout.cshtml* with the following: +```html +