From 3c3f002cc0c0065ca5d7b8443746da01c55971b8 Mon Sep 17 00:00:00 2001 From: Oleg Verzunov <40799684+VERZUOL1@users.noreply.github.com> Date: Thu, 9 Jun 2022 15:58:15 +0300 Subject: [PATCH] fix(http service): change auth header (#1164) Co-authored-by: Overzunov --- services/HttpService/HttpService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/HttpService/HttpService.ts b/services/HttpService/HttpService.ts index 5e0d0589f..88c1edee9 100644 --- a/services/HttpService/HttpService.ts +++ b/services/HttpService/HttpService.ts @@ -936,7 +936,7 @@ export class HttpService { ]); request.headers = { - Authorization: `Bearer ${buff.toString('base64')}`, + 'X-Authorization': `Bearer ${buff.toString('base64')}`, }; break; }