我正在尝试使用cordova文件传输插件下载文件。我正在传递身份验证标头值插件并使用我试图下载该文件。它返回错误代码1(连接错误)。但是没有标题我可以使用这个插件成功下载普通文件。我的代码'结构如下所示。请帮我解决这个问题。
window.requestFileSystem(LocalFileSystem.PERSISTENT,0,gotFS,function(){
var url = "http://www.gajotres.net/wp-content/uploads/2015/04/logo_radni.png";
token = "Bearer" + authtoken
var filename = url.split("/").pop();
options = {};
trusHost = true;
var targetPath = cordova.file.externalRootDirectory + filename;
$cordovaFileTransfer.download(url, targetPath, options, trusHost).then(function (result) {
console.log('Success');
}, function (error) {
console.log('Error code' + error.code);
}, function (progress) {
// PROGRESS HANDLING GOES HERE
},false,{
"Authorization" = token
});
});