Cordova 文件传输下载 http 状态 401 - 仅 ANDROID

Cordova File-Transfer download http status 401 - ONLY ANDROID

我正尝试在我的 phonegap cordova 应用程序中从服务器下载文件。函数如下所示:

fileTransfer.download(uri, localPath, success_callback, error_callback, true, { 'headers': {Connection: "close"}, 'chunkedMode': 'false' });

在我的 error_callback 函数中,我得到:

ERROR: Download error source: http://xxx.pl/media/images/file_name.png
ERROR: Download error target: file:///storage/emulated/0/imgcache//44b337d46e8bdc29d9bccd6499c54860eb348990.png
ERROR: Download error code: 3 http_status: 401

相同的代码在 iOS 上可以正常工作。 此外,如果我尝试像这样直接从服务器显示图像:<img src="http://xxx.pl/media/images/file_name.png"> 它也能正常工作。

在我的 config.xml 我有:<access origin="*" />
科尔多瓦版本:3.4.1-0.1.0
PhoneGap 版本:4.2.0-0.24.2

我有类似的 401 问题,我需要添加

$ cordova plugin add cordova-plugin-whitelist

到我的应用程序,然后添加这些

<access origin="*" subdomains="true" />
<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />

到config.xml。这解决了我的问题。

希望对您有所帮助。