From b038c3d79afa4760cd6a48ce71c5dd1af368ed0e Mon Sep 17 00:00:00 2001 From: Femke Reunes Date: Thu, 29 Jan 2026 19:43:48 +0100 Subject: [PATCH] ARC-3256: fix bearer token --- api/src/modules/video-stills/video-stills.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/modules/video-stills/video-stills.service.ts b/api/src/modules/video-stills/video-stills.service.ts index 76613336..f1a4b0a0 100644 --- a/api/src/modules/video-stills/video-stills.service.ts +++ b/api/src/modules/video-stills/video-stills.service.ts @@ -50,7 +50,7 @@ export class VideoStillsService { .get(`${process.env.VIDEO_STILLS_ENDPOINT as string}/${objectId}/keyframes`, { resolveBodyOnly: true, headers: { - Authorization: `Bearer ${accessToken}`, + Authorization: `Bearer ${accessToken.token.access_token}`, }, }) .json()) as VideoStillRaw[];