通过代理服务器从C#/ .NET调用Twilio API

时间:2016-11-30 17:37:27

标签: c# .net proxy twilio

我正在尝试从代理Web服务器后面运行C#sample twilio application。我的代理服务器需要验证。使用下面的代码,我能够成功验证代理服务器并进行Twilio调用。但是,Twilio给我一个code 20003(拒绝权限)。我的AccountSID和AuthToken是正确的。以下代码(没有代理设置)在不需要Web代理服务器的不同环境中工作正常。

我的问题类似于使用Java的问题和解决方案 posted here,但我无法使用C#/ .NET复制Java修复程序。我使用的是.NET SDK 4.5

using System;
using Twilio;
using System.Net;

namespace TestTwilio
{
    class Program
    {
        static void Main(string[] args)
        {
            var accountSid = "xx";
            var authToken = "yy";

                var twilio = new TwilioRestClient(accountSid, authToken);twilio.Proxy = new System.Net.WebProxy("proxy.mycompany.com", 8080);
                    twilio.Proxy.Credentials = new NetworkCredential(“username”, “password”);

                var message = twilio.SendMessage("+1xxxxxxxxxx","+1xxxxxxxxxx", "Hello from C#");

            if (message.RestException != null)
            {
                var error = message.RestException.Message;
                Console.WriteLine(error);
                Console.WriteLine(message.RestException.MoreInfo);
                Console.WriteLine(message.Uri);
                Console.WriteLine(message.AccountSid);
                Console.Write("Press any key to continue.");
                Console.ReadKey();
            }
        }
    }
}

感谢您提供帮助。

1 个答案:

答案 0 :(得分:3)

我能够使用直接API调用绕过此问题。对原始问题不是一个优雅的解决方案......所以仍然在寻找正确的方法来做到这一点。以下是有效的代码。

using System;
using System.Net;
using RestSharp;

namespace TestTwilio
{
    class Program
    {
        static void Main(string[] args)
        {
            var client = new RestClient("https://api.twilio.com/2010-04-01/Accounts/{yourTwilioAccountSID}/SMS/Messages.json");
            client.Proxy = new System.Net.WebProxy("proxy.mycompany.com", 8080);
            client.Proxy.Credentials = new NetworkCredential("<<proxyServerUserName>>", "<<proxyServerPassword>>", "<<proxyServerDomain>>");
            var request = new RestRequest(Method.POST);
            request.Credentials = new NetworkCredential("<<your Twilio AccountSID>>", "<<your Twilio AuthToken>>");
            request.AddParameter("From", "+1xxxxxxxxxx");
            request.AddParameter("To", "+1xxxxxxxxxx");
            request.AddParameter("Body", "Testing from C# after authenticating with a Proxy");
            IRestResponse response = client.Execute(request);
            Console.WriteLine(response.Content);
            Console.ReadKey();
        }
    }
}