我有一些代码非常直接来自示例(https://www.twilio.com/docs/tutorials/browser-calls-csharp-mvc)
[HttpPost]
public ActionResult Connect(string phoneNumber, string called)
{
var response = new VoiceResponse();
var dial = new Dial(callerId: _credentials.PhoneNumber, timeout: 10);
if (phoneNumber != null)
{
dial.Number(phoneNumber);
}
else
{
int agentId = 1;
dial.Client("support_agent");
}
response.Dial(dial);
return TwiML(response);
}
但是,当调用代码时,电话会立即挂起,而不会转发给支持代理。
此外,如果我拨打电话,则会调用该操作,但从未收到电话。
这听起来像配置问题,但我不知道在哪里看。
提示,当我尝试在Twilio控制台中调用该号码时,我得到无法建立连接。客户端已断开连接。