我想在使用twilio时获取通话状态。 我正在为接受Post动词的同一个状态调用回调网址。但不确定REST Web服务的方法在POST方法中应该有什么作用?如果Twilio回复了状态,那么Web服务的POST方法应该做什么?无法对此有所了解,请帮忙.. 我在.net
编程答案 0 :(得分:0)
Twilio开发者传道者在这里。
状态回调请求将发送all the regular parameters that any Twilio Voice webhook sends以及few extra parameters that you can find in the documentation here。
答案 1 :(得分:0)
最后,我找到了如何从twilio取回状态的解决方案。只需设计一个Http Handler并使用context属性来获取参数。处理程序应如下所示:
Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
Dim callsid = context.Request.Params.Get("CallSid")
Dim FromNumber = context.Request.Params.Get("From")
Dim ToNumber = context.Request.Params.Get("To")
Dim callStatus = context.Request.Params.Get("CallStatus")
' ...
End Sub