-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Add Basic Auth to Signal Messenger #41589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Changes from 4 commits
4b98955
b883a0a
f546c51
76da976
b586aa4
93bf457
897e989
cda44fc
acb4c50
204e71f
6784b2d
1c7465a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,6 +63,19 @@ url: | |
| description: The URL where the Signal Messenger REST API listens for incoming requests. | ||
| required: true | ||
| type: string | ||
| auth: | ||
| description: Configuration for Basic Auth. | ||
| required: false | ||
| type: map | ||
| keys: | ||
| username: | ||
| description: Username for authentication. | ||
| required: true | ||
| type: string | ||
| password: | ||
| description: Password for authentication. | ||
| required: true | ||
| type: string | ||
| number: | ||
| description: The sender number. | ||
| required: true | ||
|
|
@@ -75,6 +88,23 @@ recipients: | |
| type: string | ||
| {% endconfiguration %} | ||
|
|
||
| ### Basic Auth | ||
CodeShellDev marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| If Signal Messenger is running behind a Proxy with Basic Auth requirements, you need to add `auth` to your config and specify the username and password respectively. | ||
CodeShellDev marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```yaml | ||
| # Basic Auth example for Signal Messenger | ||
CodeShellDev marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| notify: | ||
| - name: signal | ||
| platform: signal_messenger | ||
| url: "http://127.0.0.1:8080" | ||
| auth: | ||
| username: "BASIC_AUTH_USERNAME" # the username to be used for Basic Auth | ||
| password: "BASIC_AUTH_PASSWORD" # the password for the specified user | ||
| number: "YOUR_PHONE_NUMBER" | ||
| recipients: | ||
| - "RECIPIENT1" | ||
| ``` | ||
|
|
||
| ## Notification action | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.