Created Notify_xbmc (markdown)

lead2gold 2017-11-29 20:31:45 -05:00
parent 105d4254b7
commit d1d1364079

26
Notify_xbmc.md Normal file

@ -0,0 +1,26 @@
## XBMC Notifications
* **Source**: http://kodi.tv/
* **Icon Support**: No
* **Message Format**: Text
* **Message Limit**: 250 Characters per message
**Note:** XMBC is a legacy product and has been replaced by [[KODI|Notify_kody]]. However for systems that can't be updated (such as a Jail Broken Apple TV2) you can use this protocol.
### Syntax
Valid syntaxes are as follows:
* **xbmc**:://**{hostname}**
* **xbmc**:://**{hostname}**:**{port}**
### Parameter Breakdown
| Variable | Required | Description
| ----------- | -------- | -----------
| hostname | Yes | The server XBMC is listening on.
| port | No | The port XBMC is listening on. By default the port is **8080**.
#### Example
Send a XBMC notification to our server listening on port 8080:
```bash
# Assuming our {hostname} is xbmc.server.local
notify xbmc://xbmc.server.local
```