Does network.request work in html5 builds ?
In simulator it works OK. When I build for html5 and upload files to web server am getting network request failed.
local testNetworkRequest = function () local pingPhpListener = function (event) local properties = "" for k,v in pairs(event) do --print( k,v ) properties = properties .. k .. " = " .. tostring (v) .. "\n" end msgText.text = properties end local pingPhp = network.request ("http://www.google.com", "GET", pingPhpListener) end