Skip to content

Commit f0a869c

Browse files
committed
touchups
1 parent f74153a commit f0a869c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/app-service/configure-authentication-oauth-tokens.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
22
title: Work with OAuth Tokens in Authentication and Authorization
3-
description: Learn how to retrieve tokens, refresh tokens, and extend session token expiration when you use the built-in authentication and authorization in Azure App Service.
3+
description: Learn how to retrieve, refresh, and extend session expiration for OAuth tokens when you use Azure App Service built-in authentication and authorization.
44
ms.topic: how-to
5-
ms.date: 06/30/2025
5+
ms.date: 07/01/2025
66
ms.custom: AppServiceIdentity
77
author: cephalin
88
ms.author: cephalin
99
---
1010

1111
# Manage OAuth tokens in Azure App Service
1212

13-
This article shows you how to manage OAuth tokens when you use [built-in authentication and authorization](overview-authentication-authorization.md) in Azure App Service.
13+
This article shows you how to manage [OAuth](/security/business/security-101/what-is-oauth) tokens for [built-in authentication and authorization](overview-authentication-authorization.md) in Azure App Service.
1414

1515
## Retrieve tokens in app code
1616

17-
Provider-specific tokens are injected into the request header from your server code so you can easily access them. To get the provider-specific tokens, send an HTTP `GET` request to `/.auth/me` from your client code, such as a mobile app or in-browser JavaScript. [Token store](overview-authentication-authorization.md#token-store) must be enabled for the app. The returned JSON contains the provider-specific tokens.
17+
Azure App Service injects your provider-specific tokens into the request header so you can easily access them. To get the provider-specific tokens, [token store](overview-authentication-authorization.md#token-store) must be enabled for the app. Send an HTTP `GET` request to `/.auth/me` from your client code, such as a mobile app or in-browser JavaScript. The returned JSON has the provider-specific tokens.
1818

1919
> [!NOTE]
2020
> Access tokens are for accessing provider resources, so are present only if you configure your provider with a client secret.
2121
22-
The following table lists possible token headers from several providers:
22+
The following table lists the OAuth token header names for several App Service built-in providers:
2323

2424
| Provider | Header names |
2525
|-|-|

0 commit comments

Comments
 (0)