Display a popup message via HTTP Url
#1
Is it possible to send KODI a message who is shown as a popup via a HTTP URL from another PC?
I have tried "http://kodi.wiki/view/JSON-RPC_API/#JSONRPC.NotifyAll" and it works, but I don't see a Popup on the screen.
Reply
#2
Found it by myself:
jsonrpc?request={"jsonrpc": "2.0", "method": "GUI.ShowNotification", "params": {"title": "Test", "message": "TestMessage"}, "id": 1}
Reply
#3
Could you share the the code please because I am looking for something like this Angel
Reply
#4
The code is shown in my post before.
Or what do you exactly mean?
Reply
#5
I did this from libreELEC ssh :
wget --header="Content-Type: application/json" --post-data="{\"jsonrpc\":\"2.0\",\"method\":\"GUI.ShowNotification\",\"params\":{\"title\":\"Title Goes Here\",\"message\":\"Message Goes Here\"},\"id\":1}" http://kodi:[email protected]:8080/jsonrpc
and I can get the message on my libreelec screen. I want to put it under <onclick> function how to do it?

Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
Display a popup message via HTTP Url0