authentication reference added

lead2gold 2018-01-28 16:01:31 -05:00
parent d422e7874c
commit 6427e47685

@ -10,6 +10,7 @@
Valid syntaxes are as follows: Valid syntaxes are as follows:
* **xbmc**://**{hostname}** * **xbmc**://**{hostname}**
* **xbmc**://**{hostname}**:**{port}** * **xbmc**://**{hostname}**:**{port}**
* **xbmc**://**{userid}**:**{password}**@**{hostname}**:**{port}**
### Parameter Breakdown ### Parameter Breakdown
@ -17,10 +18,19 @@ Valid syntaxes are as follows:
| ----------- | -------- | ----------- | ----------- | -------- | -----------
| hostname | Yes | The server XBMC is listening on. | hostname | Yes | The server XBMC is listening on.
| port | No | The port XBMC is listening on. By default the port is **8080**. | port | No | The port XBMC is listening on. By default the port is **8080**.
| userid | No | The account login to your XBMC server.
| password | No | The password associated with your XBMC Server.
#### Example #### Example
Send a XBMC notification to our server listening on port 8080: Send a XBMC notification to our server listening on port 8080:
```bash ```bash
# Assuming our {hostname} is xbmc.server.local # Assuming our {hostname} is xbmc.server.local
notify xbmc://xbmc.server.local notify xbmc://xbmc.server.local
# You may have a password and user protecting your xbmc server; so the
# following is another way to hit your xbmc server:
# Assuming our {hostname} is xbmc.server.local
# Assuming our {userid} is xbmc
# Assuming our {password} is xbmc
xbmc://xbmc:xbmc@xbmc.server.local
``` ```