Updated Notify_flock (markdown)

Chris Caron 2019-08-12 16:35:13 -04:00
parent bcd2f078e4
commit 5c57ef8805

@ -7,7 +7,7 @@
### Account Setup ### Account Setup
Flock has a lot of similarities to Slack. Flock notifications require an *incoming-webhook* or a *app/bot* it can connect to. Flock has a lot of similarities to Slack. Flock notifications require an *incoming-webhook* or a *app/bot* it can connect to.
## Incoming ebhook ## Incoming Webhook
You can generate an Incoming webhook from [here](https://dev.flock.com/webhooks](https://dev.flock.com/webhooks). Just follow the wizard to pre-determine the channel(s) you want your message to broadcast to. When you've completed this process you will receive a URL that looks something like this: You can generate an Incoming webhook from [here](https://dev.flock.com/webhooks](https://dev.flock.com/webhooks). Just follow the wizard to pre-determine the channel(s) you want your message to broadcast to. When you've completed this process you will receive a URL that looks something like this:
```https://api.flock.com/hooks/sendMessage/134b8gh0-eba0-4fa9-ab9c-257ced0e8221``` ```https://api.flock.com/hooks/sendMessage/134b8gh0-eba0-4fa9-ab9c-257ced0e8221```
@ -15,6 +15,8 @@ You can generate an Incoming webhook from [here](https://dev.flock.com/webhooks]
This effectively equates to: This effectively equates to:
```https://api.flock.com/hooks/sendMessage/{token}``` ```https://api.flock.com/hooks/sendMessage/{token}```
**Note:** Apprise supports this URL _as-is_ (_as of v0.7.7_); you no longer need to parse the URL any further. However there is slightly less overhead (internally) if you do.
In this example the token is `134b8gh0-eba0-4fa9-ab9c-257ced0e8221` In this example the token is `134b8gh0-eba0-4fa9-ab9c-257ced0e8221`
## Bot ## Bot
@ -22,6 +24,7 @@ Bots are a bit more difficult and presume that you followed their instructions o
### Syntax ### Syntax
Valid syntaxes with an *incoming webhook* are: Valid syntaxes with an *incoming webhook* are:
* `https://api.flock.com/hooks/sendMessage/{token}`
* flock://**{token}**/ * flock://**{token}**/
* flock://**{botname}**@**{token}**/ * flock://**{botname}**@**{token}**/