Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ This will send `Hello, World!` to `<to>` from `<from>`.
| :---------- | :--------------------------------------------------------- |
| Bearer Auth | Add `Authorization: Bearer API_TOKEN` to headers |
| Basic Auth | Add `Authorization: Basic BASE64_STRING` (`api:API_TOKEN`) |
| Query Auth | Append `@auth=API_TOKEN` to request URL |
| Query Auth | Append `@authorization=API_TOKEN` to request URL |
| Body Auth | Set `auth` to `API_TOKEN` in the request body |

Example:

Expand Down
5 changes: 3 additions & 2 deletions src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="docs/usage#auth">Bearer</a>,{" "}
<a href="docs/usage#auth">Basic</a>, and{" "}
<a href="docs/usage#auth">Query Auth</a>.
<a href="docs/usage#auth">Basic</a>,{" "}
<a href="docs/usage#auth">Query Auth</a> and{" "}
<a href="docs/usage#auth">more</a>.
</>
),
},
Expand Down