From c0cb3e77c1464918e17af98e7b3a6cf7b787e375 Mon Sep 17 00:00:00 2001 From: CodeShell <122738806+CodeShellDev@users.noreply.github.com> Date: Fri, 2 Jan 2026 20:16:54 +0100 Subject: [PATCH] add body auth --- docs/usage/index.md | 1 + src/components/HomepageFeatures/index.js | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/usage/index.md b/docs/usage/index.md index 970156c0..7c1077ea 100644 --- a/docs/usage/index.md +++ b/docs/usage/index.md @@ -29,6 +29,7 @@ This will send `Hello, World!` to `` from ``. | Bearer Auth | Add `Authorization: Bearer API_TOKEN` to headers | | Basic Auth | Add `Authorization: Basic BASE64_STRING` (`api:API_TOKEN`) | | Query Auth | Append `@authorization=API_TOKEN` to request URL | +| Body Auth | Set `auth` to `API_TOKEN` in the request body | Example: diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js index 92c0cef2..31fad474 100644 --- a/src/components/HomepageFeatures/index.js +++ b/src/components/HomepageFeatures/index.js @@ -11,8 +11,9 @@ const FeatureList = [ <> The main focus of Secured Signal API is to provide a secure layer for signal-cli-rest-api, supporting Bearer,{" "} - Basic, and{" "} - Query Auth. + Basic,{" "} + Query Auth and{" "} + more. ), },