I’m suddenly having issues downloading PNG files only on Android devices from URLs that used to work. I’m not exactly sure at what point this issue started, but it definitely worked before.
One of the URLs that fails only on Android is: http://dbh_cache.s3.amazonaws.com/19445/34173cb38f07f89ddbebc2ac9128303f-33b64a2ed0f1ff4750f183b4f2a161b8.png
I’ve created a test case. Here’s the code. I’ve attached the results of the android log and I’ve attached a zip file with the project and the android log read to be tested by someone. Please help! I have no idea what to do!
local function listener(event)
if event.isError then
print ( “It Failed - Only happens on Android Device” )
else
print ( “It Worked - Happens in iOS or Simulator” )
end
end
local params = {}
params.headers = {
[“Content-Type”] = “application/x-www-form-urlencoded”,
[“Accept”] = “*/*”,
[“Accept-Charset”] = “*”,
[“Accept-Language”] = “en-us”,
[“Accept-Encoding”] = “gzip, deflate”,
[“Date”] = os.date("!%a, %d %b %Y %H:%M:%S GMT")
}
local urlname = “http://cdn.designbyhumans.com/product_images/4bf5r3s0t9jek1f53.png”
network.download(urlname, “GET”, listener, params, “test.png” ,system.CachesDirectory )
–
– Try it again with the re-directed URL name in case there is any difference
–
network.download(urlname, “GET”, listener, params, “test1.png” ,system.CachesDirectory )