Android 的 Cordova 应用程序,文件传输插件未通过 https 下载文件

Cordova app for Android, filetransfer plugin not downloading a file through https

我正在为 android 构建一个 Cordova 应用程序,我在其中下载 pdf 文件和流式传输托管在具有安全绑定 (https) 的站点上的视频,但是使用代码 3 的文件传输插件下载失败,视频永远不会播放(使用 html5 视频标签)。我试图修改位于平台文件夹中的文件 'CordovaWebViewClient.java' 中的 SSL 错误处理,并尝试在 config.xml 中加入白名单,但似乎没有任何效果。 非常感谢您的帮助。

也许您使用的证书不受设备信任,请尝试将 trustAllHosts 参数设置为 true

fileTransfer.download(
    uri,
    fileURL,
    successCallback,
    errorCallback,
    true,
    options
);