twilio recordingStatusCallback 没有向 url 发送参数
twilio recordingStatusCallback is not sending parameters to url
我想用 recordingStatusCallback url 发送一个号码。但是,当我在 web-hook url 中收到参数日志时,我没有看到我在 URL 中传递的参数。我将参数解析为 url-endcoded 格式。
下面的代码,我在 url 中发送了 chunkStartNumber=18,但是下面的日志中没有 chunkStartNumber 的踪迹
var recLenDivided=18;
let twiml = new Twilio.twiml.VoiceResponse();
twiml.record({
action:`https://xyz`,
method: 'GET',
finishOnKey: '5',
recordingStatusCallback:`http://xyz/hookFolder?chunkStartNumber=${recLenDivided}`
});
return callback(null, twiml);
}
解析器代码
const express = require ('express')
const bodyParser = require ('body-parser')
const app = express()
const PORT = 3000
app.use(express.static("public"))
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({extended:true}))
app.post("/hookFolder",(req, res) => {
console.log(req.body)
res.status(200).end()
})
日志
{ RecordingSource: 'RecordVerb',RecordingSid: 'RE', RecordingUrl: 'https://api.twilio.com/2010-04-01/', RecordingStatus: 'completed', RecordingChannels: '1', ErrorCode: '0', CallSid: 'CA', RecordingStartTime: 'Tue, 22 Dec 2020 18:09:44 +0000', AccountSid: 'AC', RecordingDuration: '9' }
尝试req.query。
另外,不需要使用 Bodyparser。内置在更高版本的 Express 中。
- 4.16.0 - 发布日期:2017-09-28
https://expressjs.com/en/changelog/4x.html
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
我想用 recordingStatusCallback url 发送一个号码。但是,当我在 web-hook url 中收到参数日志时,我没有看到我在 URL 中传递的参数。我将参数解析为 url-endcoded 格式。 下面的代码,我在 url 中发送了 chunkStartNumber=18,但是下面的日志中没有 chunkStartNumber 的踪迹
var recLenDivided=18;
let twiml = new Twilio.twiml.VoiceResponse();
twiml.record({
action:`https://xyz`,
method: 'GET',
finishOnKey: '5',
recordingStatusCallback:`http://xyz/hookFolder?chunkStartNumber=${recLenDivided}`
});
return callback(null, twiml);
}
解析器代码
const express = require ('express')
const bodyParser = require ('body-parser')
const app = express()
const PORT = 3000
app.use(express.static("public"))
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({extended:true}))
app.post("/hookFolder",(req, res) => {
console.log(req.body)
res.status(200).end()
})
日志
{ RecordingSource: 'RecordVerb',RecordingSid: 'RE', RecordingUrl: 'https://api.twilio.com/2010-04-01/', RecordingStatus: 'completed', RecordingChannels: '1', ErrorCode: '0', CallSid: 'CA', RecordingStartTime: 'Tue, 22 Dec 2020 18:09:44 +0000', AccountSid: 'AC', RecordingDuration: '9' }
尝试req.query。
另外,不需要使用 Bodyparser。内置在更高版本的 Express 中。
- 4.16.0 - 发布日期:2017-09-28 https://expressjs.com/en/changelog/4x.html
app.use(express.json());
app.use(express.urlencoded({ extended: false }));