嘿,我正在使用 Phonegap 的 FileTransfer。我收到一个 401 代码 3 错误(未经授权)httprequest。
我对 FT 方法的实现:
var ft = new FileTransfer();
ft.download(startUrl + filename, dlPath, function(e){
console.log("Successful download of "+e.fullPath);
renderPicture(e.fullPath);
}, onError);
请求/响应:
07-24 08:58:12.750: D/CordovaLog(3744): {"target":"file:///mnt/sdcard/dk.test.html5Generic/","source":"http://mobilitycms.test.dk:9090/content/picture/menu/showroom","http_status":401,"code":3}
如果您需要测试您需要删除的路径:9090 我有它,因为我在内部网络上。
任何帮助将不胜感激,以消除此错误:-P