1.使用demo中的HTTP,下载download.bin文件,没有问题;程序中调用的源代码为:
http.request("GET","www.lua.org",nil,nil,nil,30000,cbFncFile,"download.bin")
2.使用我自己的网址,下载一个MP3问题,出现错误,我的下载地址和文件为https://sczjb.oss-cn-shanghai.aliyuncs.com/temp/final_audio.mp3
我尝试使用 http.request("GET","https://sczjb.oss-cn-shanghai.aliyuncs.com/temp/",nil,nil,nil,30000,cbFncFile,"final_audio.mp3"),结果是失败了
后来看了其他资料认为是地址出错了,就将地址进行了调整,http.request("GET","https://sczjb.oss-cn-shanghai.aliyuncs.com",nil,nil,nil,30000,cbFncFile,"/temp/final_audio.mp3");
后续测试,结果依然不行,不懂哪里出错了,请求指点迷津,谢谢