本文整理汇总了C#中Twilio.TwilioRestClient.RedirectCall方法的典型用法代码示例。如果您正苦于以下问题:C# TwilioRestClient.RedirectCall方法的具体用法?C# TwilioRestClient.RedirectCall怎么用?C# TwilioRestClient.RedirectCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Twilio.TwilioRestClient
的用法示例。
在下文中一共展示了TwilioRestClient.RedirectCall方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
// Find your Account Sid and Auth Token at twilio.com/user/account
string AccountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
string AuthToken = "your_auth_token";
var twilio = new TwilioRestClient(AccountSid, AuthToken);
twilio.RedirectCall("CAe1644a7eed5088b159577c5802d8be38",
"http://demo.twilio.com/docs/voice.xml", "POST");
}
示例2: RedirectTwilio
private bool RedirectTwilio(string xmlPage)
{
TwilioRestClient Tclient;
CallListRequest options;
Tclient = new TwilioRestClient(AccountSid, "803c5c172df9c39096770ae982e0cefe");
options = new CallListRequest();
options.Count = 1;
options.Status = "in-progress";
var call = Tclient.RedirectCall(CallSid, xmlPage, "GET");
if (call.RestException != null)
{
log.Info(String.Format("{0} - RedirectTwilio sendError Code: " + call.RestException.Code + " Error Message: " + call.RestException.Message, ANI));
return false;
}
else
{
log.Info(String.Format("{0} - Sent " + xmlPage + " to Twilio. CallSid is " + CallSid + " AccountSid is " + AccountSid, ANI));
return true;
}
}
示例3: RedirectCall
private void RedirectCall(string callSid, string url)
{
string accountSid = "[YOUR_ACCOUNT_SID]";
string authToken = "[YOUR_AUTH_TOKEN]";
var client = new TwilioRestClient(accountSid, authToken);
client.RedirectCall(callSid, url, "GET");
}