我使用CallResource.Create(); 但是它拨打电话时没有回铃音并且已断开连接,由于twilio.js的浏览器兼容性,我需要纯C#代码来制作呼出电话形式的浏览器,而且我对https URI感到困惑,因为在该位置指定了什么,因为create已经在“收件人”。
public ActionResult MakeCall(string number)
{
string AccountSid = "********";
string AuthToken = "*********";
TwilioClient.Init(AccountSid, AuthToken);
var to = new PhoneNumber(number);
var from = new PhoneNumber("********");
ServicePointManager.SecurityProtocol =(SecurityProtocolType)3072;
if (number!= null) {
var call = CallResource.Create(to: to, from: from, m
achineDetection: "Enable",timeout:600, url: new Uri("https://handler.twilio.com/"));
ViewBag.Message = call.Sid;
}
return View("Index");
}