首先,我对网络服务和javascript很了解。
我正在尝试调用一个Web服务,该服务返回以下格式的pdf文件:
为了调用pdf,我使用res.body就像下面的代码:
var url="https://........../......./..../..";
var options = {
"rejectUnauthorized": false,
"method": "GET",
"url": url,
"headers": {
"Authorization": "Basic EJFHUygdiAISDGIF",
"Content-Type": "application/json"
}
};
request(options, (err, res) => {
if (res.statusCode == 200 ) {
conversation.logger().info("pdf:" + res.body); // in order to check the content of the pdf in the platform i use
}
});
我这里的问题是我不知道如何下载或显示PDF内容。
任何帮助都是有价值的。
1条答案
按热度按时间kdfy810k1#
将内容类型更改为pdf