From 6427e476859f12989c63eac7d9af0bbbcebce387 Mon Sep 17 00:00:00 2001 From: lead2gold Date: Sun, 28 Jan 2018 16:01:31 -0500 Subject: [PATCH] authentication reference added --- Notify_xbmc.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Notify_xbmc.md b/Notify_xbmc.md index 93e12fb..3ac9e70 100644 --- a/Notify_xbmc.md +++ b/Notify_xbmc.md @@ -10,6 +10,7 @@ Valid syntaxes are as follows: * **xbmc**://**{hostname}** * **xbmc**://**{hostname}**:**{port}** +* **xbmc**://**{userid}**:**{password}**@**{hostname}**:**{port}** ### Parameter Breakdown @@ -17,10 +18,19 @@ Valid syntaxes are as follows: | ----------- | -------- | ----------- | hostname | Yes | The server XBMC is listening on. | 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 Send a XBMC notification to our server listening on port 8080: ```bash # Assuming our {hostname} is 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 ``` \ No newline at end of file