我得到
在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” ”。