Hi
could someone help me with the following code that is not working, the testvariable is not passed to the http request
local testvariable = “hi Lloyd how are you”
local http = require(“socket.http”)
– 5 Second timeout
http.TIMEOUT = 5
result, status = http.request(“http://192.168.10.112:5005/sayall/%testvariable%”)
thanks in advance
Lloyd