mirror of https://github.com/caronc/apprise
Created Notify_streamlabs (markdown)
parent
695a72ac34
commit
1d64772d29
|
@ -0,0 +1,42 @@
|
|||
## Streamlabs Notifications
|
||||
* **Source**: https://streamlabs.com/
|
||||
* **Icon Support**: Yes
|
||||
* **Message Format**: Text
|
||||
* **Message Limit**: 32768 Characters per message
|
||||
|
||||
### Account Setup
|
||||
The process to get signed up with Streamlabs is a bit lengthy.
|
||||
|
||||
**Note:** The screenshots and instructions below are 100% full credit to the **[LNBits Project](https://github.com/Fittiboy/lnbits)** ([found here](https://github.com/Fittiboy/lnbits/tree/master/lnbits/extensions/streamalerts#stream-alerts)).
|
||||
|
||||
At the moment, the only service that has an open API to work with is Streamlabs, so this setup requires linking your Twitch/YouTube/Facebook account to Streamlabs.
|
||||
|
||||
1. Log into [Streamlabs](https://streamlabs.com/login?r=https://streamlabs.com/dashboard).
|
||||
1. Navigate to the API settings page to register an App:
|
||||

|
||||

|
||||

|
||||
1. Fill out the form with anything it will accept as valid. Most fields can be gibberish, as the application is not supposed to ever move past the "testing" stage and is for your personal use only.
|
||||
In the "Whitelist Users" field, input the username of a Twitch account you control. While this feature is *technically* limited to Twitch, you can use the alerts overlay for donations on YouTube and Facebook as well.
|
||||
For now, simply set the "Redirect URI" to `http://localhost`, you will change this soon.
|
||||
Then, hit create:
|
||||

|
||||
1. Create a "NEW SERVICE" using the button. Fill in all the information (you get your Client ID and Secret from the Streamlabs App page):
|
||||

|
||||
|
||||
### Syntax
|
||||
Valid syntax is as follows:
|
||||
* `strmlabs://{access_token}/`
|
||||
|
||||
### Parameter Breakdown
|
||||
| Variable | Required | Description
|
||||
| ------------ | -------- | -----------
|
||||
| access_token | Yes |The access token generated from your Streamlabs account.
|
||||
|
||||
#### Example
|
||||
Send a streamlabs notification:
|
||||
```bash
|
||||
# Assuming our {access_token} is abcdefghij1234567890
|
||||
apprise -vv -t "Test Message Title" -b "Test Message Body" \
|
||||
strmlabs:///abcdefghij1234567890/
|
||||
```
|
Loading…
Reference in New Issue