Skip to content

Commit 28a55ca

Browse files
Apply suggestions from code review
Co-authored-by: Anthony Chu <[email protected]>
1 parent 56125be commit 28a55ca

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/container-apps/token-store.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@ ms.author: cshoe
1111

1212
# Enable a token store in Azure Container Apps
1313

14-
Azure Container Apps authentication supports a feature called token store. A token store is a repository of tokens that are associated with the users of your web apps and APIs. You enable a token store by configuring your container app with an Azure Storage account.
14+
Azure Container Apps authentication supports a feature called token store. A token store is a repository of tokens that are associated with the users of your web apps and APIs. You enable a token store by configuring your container app with an Azure Blob Storage container.
1515

1616
Your application code sometimes needs to access data from these providers on the user's behalf, such as:
1717

1818
* post to the authenticated user's Facebook timeline
1919
* read the user's corporate data using the Microsoft Graph API
2020

21-
You typically must write code to collect, store, and refresh these tokens in your application. With the token store, you just [retrieve the tokens](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-oauth-tokens#retrieve-tokens-in-app-code) when you need them and [tell Container Apps to refresh them](https://learn.microsoft.com/en-us/azure/app-service/configure-authentication-oauth-tokens#refresh-auth-tokens) when they become invalid.
21+
You typically must write code to collect, store, and refresh these tokens in your application. With the token store, you just [retrieve the tokens](../app-service/configure-authentication-oauth-tokens.md#retrieve-tokens-in-app-code) when you need them and [tell Container Apps to refresh them](../app-service/configure-authentication-oauth-tokens.md#refresh-auth-tokens) when they become invalid.
2222

23-
The ID tokens, access tokens, and refresh tokens are cached for the authenticated session, and they're accessible only by the associated user.
23+
When token store is enabled, Container Apps authentication caches ID tokens, access tokens, and refresh tokens the authenticated session, and they're accessible only by the associated user.
2424

2525
## Generate a SAS URL
2626

27-
Before you can create a token store for your container app, you first need an Azure Storage account with a private container.
27+
Before you can create a token store for your container app, you first need an Azure Storage account with a private blob container.
2828

2929
1. Go to your storage account or [create a new one](/azure/storage/common/storage-account-create?tabs=azure-portal) in the Azure portal.
3030

31-
1. Select **Containers** and create a private container if necessary.
31+
1. Select **Containers** and create a private blob container if necessary.
3232

3333
1. Select the three dots (•••) at the end of the row for your container.
3434

3535
1. Enter the values appropriate to your needs in the *Generate SAS* window.
3636

3737
> [!NOTE]
38-
> Make sure your keep track of your SAS expiration dates to ensure access to your container doesn't cease.
38+
> Make sure you keep track of your SAS expiration dates to ensure access to your container doesn't cease.
3939
4040
1. Select the **Generate SAS token URL** button to generate the SAS URL.
4141

0 commit comments

Comments
 (0)