我正在对 SmartSheet 进行 API 调用,将工作表作为 PDF 文件返回。
这是相关文档 -链接
我的问题是如何接受 PDF 响应并将其本地保存在 nodeJs 中?我正在使用该https
模块,我知道如何提出请求,但我不明白如何接受响应:
https.request(options, function (response) {
var body = '';
response.on('data', function (chunk) {
body += chunk;
});
response.on('end', function () {
//What do I do with the body here?
});
});