-
-
Notifications
You must be signed in to change notification settings - Fork 416
Notify_kodi
Chris Caron edited this page Jun 17, 2023
·
7 revisions
- Source: http://kodi.tv/
- Icon Support: No
- Message Format: Text
- Message Limit: 250 Characters per message
Valid syntaxes are as follows:
- kodi://{hostname}
- kodi://{hostname}:{port}
- kodi://{userid}:{password}@{hostname}
- kodi://{userid}:{password}@{hostname}:{port}
- kodis://{hostname}
- kodis://{hostname}:{port}
- kodis://{userid}:{password}@{hostname}
- kodis://{userid}:{password}@{hostname}:{port}
Secure connections (via https) should be referenced using kodis:// where as insecure connections (via http) should be referenced via kodi://.
Variable | Required | Description |
---|---|---|
hostname | Yes | The server Kodi is listening on. |
port | No | The port Kodi is listening on. By default the port is 80 for kodi:// and 443 for all kodis:// references. |
userid | No | The account login to your KODI server. |
password | No | The password associated with your KODI Server. |
Send a Kodi notification to our server listening on port 80:
# Assuming our {hostname} is kodi.server.local
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"kodi://kodi.server.local"