我在 npm 中找到了 interfax。但不确定我是否需要它。有人可以帮我找到使用 node+express 发送传真的正确方法吗?
问问题
765 次
1 回答
3
如果您查看 interfax 库的源代码,您会发现该库使用的是本机 node.js 模块https
。你可以在这里阅读更多关于它的信息。
所以你根本不需要express
。继续阅读自述文件中的文档。
但是,如果您想在某个端点呼叫后发送传真,您可以执行以下操作:
const express = require('express');
const app = express();
const InterFAX = require('interfax');
// Initialize using parameters
const interfax = new InterFAX({
username: '...',
password: '...'
});
app.get('/sendFax', (req, res) => {
// Send test file
interfax.outbound.deliver({
faxNumber: '+11111111112',
file: 'folder/fax.txt'
})
.then(fax => {
res.send('Fax sended');
})
.catch(error => {
res.send('Error: ', error);
});
});
app.listen(3000);
于 2017-12-30T21:59:01.277 回答