我在npm中找到了interfax。但不确定是否是我需要的。有人可以帮助我找到使用node + express发送传真的正确方法吗?

最佳答案

如果您看一下interfax库的源代码,可以看到该库正在使用本机node.js模块https。您可以here详细了解。

因此,您根本不需要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);

09-25 16:09