From d32b8a4d8a4eba67468aa152fda9a80844ee5a88 Mon Sep 17 00:00:00 2001 From: Travis Groth Date: Thu, 29 Apr 2021 15:38:58 -0400 Subject: [PATCH] docs: mention alternative bearer token header format (#2155) --- docs/docs/topics/programmatic-access.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docs/topics/programmatic-access.md b/docs/docs/topics/programmatic-access.md index cbf235628..d89644c8e 100644 --- a/docs/docs/topics/programmatic-access.md +++ b/docs/docs/topics/programmatic-access.md @@ -48,6 +48,10 @@ The application interacting with Pomerium must manage the following workflow. Co 1. The script or application is responsible for handling that http callback request, and securely handling the callback session (`pomerium_jwt`) queryparam. 1. The script or application can now make any requests as normal to the upstream application by setting the `Authorization: Pomerium ${pomerium_jwt}` header. +:::tip +Pomerium supports `Authorization: Bearer Pomerium-${pomerium_jwt}` in addition to `Authorization: Pomerium ${pomerium_jwt}` format. +::: + ## Example Code Please consider see the following minimal but complete python example.