My issue is if I use this code to notify my android TV does not show the text:
Code: Select all
domoticz.openURL({
url = 'http://192.168.0.100:7676'
method = 'POST',
callback = 'notyAndroidTv',
postData = {
['msg']= 'Test_message', -- Message to show
},
})
Code: Select all
domoticz.openURL({
url = 'http://192.168.0.100:7676?msg=Test_message'
method = 'POST',
callback = 'notyAndroidTv',
postData = {
-- ['msg']= 'Test_message', -- Message to show
},
})