Skip to content

Commit

Permalink
Update requesting.md
Browse files Browse the repository at this point in the history
Added link. Fixed typo.
  • Loading branch information
DavidKlempfner authored Oct 5, 2023
1 parent 0f77834 commit 82832d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IdentityServer/v6/docs/content/tokens/requesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Pragma: no-cache
```

### .NET client library
On .NET you can leverage the [IdentityModel](https://identitymodel.readthedocs.io/en/latest/) client library to [request](https://identitymodel.readthedocs.io/en/latest/client/token.html) tokens.
In .NET you can leverage the [IdentityModel](https://identitymodel.readthedocs.io/en/latest/) client library to [request](https://identitymodel.readthedocs.io/en/latest/client/token.html) tokens.

The above token request would look like this in C#:

Expand Down Expand Up @@ -129,7 +129,7 @@ Prerequisites are:
* grant the client access to both scopes via the [*AllowedScopes*]({{< ref "/reference/models/client#basics" >}}) property

### Front-channel
The call to the authorize endpoint is one using a redirect in the browser:
The call to the authorize endpoint is done using a redirect in the browser:

```
GET /connect/authorize?
Expand Down Expand Up @@ -179,7 +179,7 @@ Pragma: no-cache
```

{{% notice note %}}
See the refresh token section for more information on how to deal with refresh tokens. TODO link
See the refresh token section for more information on how to deal with [refresh tokens]({{< ref "/tokens/refresh/" >}}).
{{% /notice %}}

### .NET client library
Expand Down Expand Up @@ -220,4 +220,4 @@ public void ConfigureServices(IServiceCollection services)
```

### Automating token management in ASP.NET Core
The [IdentityModel.AspNetCore](https://identitymodel.readthedocs.io/en/latest/aspnetcore/web.html) library can also be used to automate token lifetime management in ASP.NET Core applications for you.
The [IdentityModel.AspNetCore](https://identitymodel.readthedocs.io/en/latest/aspnetcore/web.html) library can also be used to automate token lifetime management in ASP.NET Core applications for you.

0 comments on commit 82832d9

Please sign in to comment.