i have a lua script running on my raspberry with this line in it:
commandArray['OpenURL']='192.168.0.123:8080/json.htm?type=command¶m=updateuservariable&vname=deltaT&vtype=1&vvalue='..tostring(delta)
that works perfect, in my settings: i dont need to use a username and password when connected to my local network.
but i want to change this so i have to implement my username and password in this line.
so this is what i did:
commandArray['OpenURL']='http://USERNAME:[email protected] ... ing(delta)
i succesfully use this command with the username and password in "tasker" on my Phone but in lua it does not work.
or can it be done more easely?
this allso does not work

commandArray['OpenURL']='USERNAME:[email protected]:8080/json.htm?type=command¶m=updateuservariable&vname=deltaT&vtype=1&vvalue='..tostring(delta)