node.js https模块“无法确定域名”

时间:2018-08-29 09:43:51

标签: node.js https

我得到

  

无法确定域名

在node.js应用程序中使用https.get时出现

错误。

我的代码如下:

const options = {
                    hostname: hostname,
                    port: 443,
                    path: remotePDFFilePath,
                    method: 'GET'
                };
https.get(hostname + remotePDFFilePath, res => {
    res.setEncoding("base64");
    let body = "";
    res.on("data", data => {
        body += data;
    });
    res.on("end", () => {
        callback(null, {
            status: 1,
            response: body.toString('base64')
        });
    });
});

我尝试搜索Google和StackOverflow,但是没有找到任何相关信息。我尝试使用https更改http模块,但遇到同样的错误。

hostname的值为“ subdomain.domain.org ”,remotePDFFilePath的值为“ /一月文件夹/最后一个,第一个DocID.pdf” ”。

0 个答案:

没有答案