We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a620739 commit b5e2f51Copy full SHA for b5e2f51
README.md
@@ -0,0 +1,28 @@
1
+# Secured Signal Api
2
+
3
+Secured Signal Api acts as a secured proxy for signal-rest-api.
4
5
+## Installation
6
7
+Get the latest version of the `docker-compose.yaml` file:
8
9
+```yaml
10
+---
11
+services:
12
+ myservice:
13
+ container_name: myservice
14
+```
15
16
+## Usage
17
18
+To send a message to `number`: `1234567`:
19
20
+```bash
21
+curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer TOKEN" -d '{"message": "Hello World!", "recipients": ["1234567"]}' http://signal-api/v2/send
22
23
24
+## Contributing
25
26
+## License
27
28
+[MIT](https://choosealicense.com/licenses/mit/)
0 commit comments