Updated Notify_googlechat (markdown)

Chris Caron 2022-12-10 10:18:16 -05:00
parent feea4aa9b5
commit 93f0e10b8a

@ -36,6 +36,7 @@ Valid syntax is as follows:
| workspace | Yes | The workspace associated with your Google Chat account.
| webhook_key | Yes | The webhook key associated with your Google Chat account.
| webhook_token | Yes | The webhook token associated with your Google Chat account.
| thread | No | You can optionally specify a `ThreadKey` on the URL to focus it's notifications there.
#### Example
Send a Google Chat notification
@ -57,4 +58,15 @@ Send a Google Chat notification
apprise -vv -t "Test Message Title" -b "Test Message Body" \
https://chat.googleapis.com/v1/spaces/AAAAkM/messages?key=AIzaSSjMm-WEfqKqqsHI&token=O7bnyri_WEXKcyFk%3D
```
```
Want to target a specific threadKey? Just do the following:
```bash
# Assuming our {workspace} is AAAAkM
# Assuming our {webhook_key} is AIzaSSjMm-WEfqKqqsHI
# Assuming our {webhook_token} is O7bnyri_WEXKcyFk%3D
# Assuming our {threadkey} is ABC
apprise -vv -t "Test Message Title" -b "Test Message Body" \
gchat://AAAAkM/AIzaSSjMm-WEfqKqqsHI/O7bnyri_WEXKcyFk%3D/?thread=ABC
```