Created Notify_notica (markdown)

master
Chris Caron 2019-10-19 09:26:13 -04:00
parent 77b1ef75b1
commit 4348581c25
1 changed files with 36 additions and 0 deletions

36
Notify_notica.md Normal file

@ -0,0 +1,36 @@
## Notica Notifications
* **Source**: https://notica.us/
* **Icon Support**: No
* **Message Format**: Text
* **Message Limit**: 32768 Characters per message
### Account Setup
Notica doesn't require you to create an account at all. You just have to visit [their website](https://notica.us/) at least once to both:
1. Get your token
1. Enable Browser Notifications (to be sent from the Notica website)
The website will generate you a URL to post to that looks like this:
`https://notica.us/?abc123`
This effectively equates to: `https://notica.us/?{token}`
Note: _disregard the question mark on the URL as it is not part of the token_.
From here you have two options, you can directly pass the Notica URL into apprise exactly how it is shown to you from the website, or you can reconstruct the URL into an Apprised based one (which equates to _slightly_ faster load times) as: `notica://{token}`
### Syntax
Valid syntaxes are as follows:
* `https://notica.us/?{token}`
* `notica://{token}`
### Parameter Breakdown
| Variable | Required | Description
| ----------- | -------- | -----------
| token | Yes | The Token that was generated for you after visiting their [website](https://notica.us/).
#### Example
Send a notica notification:
```bash
# Assuming our {token} is abc123
apprise notica://abc123
```