使用HTTPS协议传输Phonegap Cordova文件



我正在与Phonegap 6.3.3合作。我得下载一个文件。如果我的端点是HTTP连接,操作是ok的,但如果端点使用HTTPS (TLS 1.2)连接,fileTransfer.download返回error.code = 3

    getDocumentFile : function(docId, fileName,successClb,errorClb){
        var url = this.endpoint + "/contents/getDocument?documentId=" + docId;
        var filePath = cordova.file.externalDataDirectory + fileName;
        var fileTransfer = new FileTransfer();
        fileTransfer.download(
                    url,
                    filePath,
                    function(entry) {                           
                        successClb(entry.nativeURL);
                    },
                    function(error) {
                        console.log("download error source " + error.source);
                        console.log("download error target " + error.target);
                        console.log("upload error code" + error.code);
                        errorClb(error);
                    },
                    false
                );

使用ajax调用Jquery与HTTPS协议我没有任何问题。你能帮我一下吗?

我找到解决办法了。下面是对证书自动签名(不受信任)的HTTPS的正确调用。重要的是将true传递给倒数第二个参数(allowAllHost)。要了解更多信息,请阅读参考cordova

new FileTransfer();
        fileTransfer.download(
                    url,
                    filePath,
                    success,
                    error,
                    true
                );

相关内容

  • 没有找到相关文章

最新更新