使用 Node.js 接收 WhatsApp 消息
Receive WhatsApp messages using Node.js
我正在尝试使用 ultramsg
通过 WhatsApp api 阅读用户的消息
并使用NGROK
const express = require('express')
const bodyParser = require('body-parser')
const app = express()
const PORT = 4000
app.use(bodyParser.json())
app.listen(PORT, () => console.log(`Server running ${PORT}`))
ngrok 显示 404 错误
您需要设置一个 webhook 路由
app.use(bodyParser.json())
app.post('/test_webhook', (req, res) => {
console.log(req.body)
res.status(200).end()
})
现在 Webhook URL 是:http:///your_ngrok_url/test_webhook
我正在尝试使用 ultramsg
通过 WhatsApp api 阅读用户的消息并使用NGROK
const express = require('express')
const bodyParser = require('body-parser')
const app = express()
const PORT = 4000
app.use(bodyParser.json())
app.listen(PORT, () => console.log(`Server running ${PORT}`))
ngrok 显示 404 错误
您需要设置一个 webhook 路由
app.use(bodyParser.json())
app.post('/test_webhook', (req, res) => {
console.log(req.body)
res.status(200).end()
})
现在 Webhook URL 是:http:///your_ngrok_url/test_webhook