From c3b599d4e80624d6f80a75d37a98e3b857b42d5a Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Fri, 25 Apr 2025 09:53:30 +0200 Subject: [PATCH] Fix typo - Exorcism (demon -> daemon) --- src/content/docs/accesstokenmanagement/workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/accesstokenmanagement/workers.md b/src/content/docs/accesstokenmanagement/workers.md index 8ed49a9e..9652fbaf 100644 --- a/src/content/docs/accesstokenmanagement/workers.md +++ b/src/content/docs/accesstokenmanagement/workers.md @@ -7,7 +7,7 @@ redirect_from: - /foss/accesstokenmanagement/workers/ --- -A common scenario in worker applications or background tasks (or really any demon-style applications) is to call APIs using an OAuth token obtained via the client credentials flow. +A common scenario in worker applications or background tasks (or really any daemon-style applications) is to call APIs using an OAuth token obtained via the client credentials flow. The access tokens need to be requested and cached (either locally or shared between multiple instances) and made available to the code calling the APIs. In case of expiration (or other token invalidation reasons), a new access token needs to be requested.