Skip to content

Apprise

OneLiveRec uses Apprise under the hood, letting you send notifications to almost all of the most popular notification services available to us today.

The service URL format and all of the notification services supported by Apprise can be found in the Apprise wiki.

OneLiveRec uses Liquid templates to generate the final message title and body, letting you customize the final generated message using Liquid syntax as needed.


The service URL used to send the notification

Event type: live_start, live_end, error

The live URL

The live platform

The live channel

The streamer’s user ID

The streamer’s user name

The streamer’s avatar URL

The live title

The live cover URL

The live categories

The live ID

The live start time

The error message


The date filter is extended to support a timezone argument.

If the timezone argument is not specified, the date filter defaults to using the UTC timezone.

The timezone argument can be utc, local, or a timezone name from the Time Zone Database, such as Asia/Shanghai, America/New_York, Europe/London.

Examples:

{{ start_time | date: '%Y-%m-%dT%H:%M:%SZ' }}
{{ start_time | date: '%Y-%m-%dT%H:%M:%SZ', 'utc' }}
{{ start_time | date: '%Y-%m-%d %H:%M:%S', 'local' }}
{{ start_time | date: '%Y-%m-%d %H:%M:%S', 'Asia/Shanghai' }}
{{ start_time | date: '%Y-%m-%d %H:%M:%S', 'America/New_York' }}
{{ start_time | date: '%Y-%m-%d %H:%M:%S', 'Europe/London' }}