If you are working with the Twilio C# / .NET Helper Library, and you need to be able to modify the HTTP requests that the library makes to the Twilio servers, you’re in the right place. The most common need to alter the HTTP request is to connect and authenticate with an enterprise’s proxy server. We’ll provide sample code that you can drop right into your app to handle this use case.
To connect and provide credentials to a proxy server that may be between your app and Twilio, you need a way to modify the HTTP requests that the Twilio helper library makes on your behalf to invoke the Twilio REST API.
On .NET 4.5.1 and above, the Twilio helper library uses the HttpClient
class (in the System.Net.Http
namespace
) under the hood to make the HTTP requests. Knowing this, the following two facts should help us arrive at the solution:
- Connecting to a proxy server with
HttpClient
is a solved problem. - The Twilio Helper Library allows you to provide your own
HttpClient
for making API requests.
So the question becomes how do we apply this to a typical Twilio REST API example?
TwilioClient.Init(accountSid, authToken);
var message = MessageResource.Create(
to: new PhoneNumber("+15558675309"),
from: new PhoneNumber("+15017250604"),
body: "Hello from C#");
Where does a TwilioRestClient
get created and used? Out of the box, the helper library is creating a default TwilioRestClient
for you, using the Twilio credentials you pass to the Init
method. However, there’s nothing stopping you from creating your own and using that.
Once you have your own TwilioRestClient
, you can pass it to any Twilio REST API resource action you want. Here’s an example of sending an SMS message with a custom client:
using System;
using Twilio.Rest.Api.V2010.Account;
using Twilio.Types;
namespace CustomClientDotNet4x
{
class Program
{
static void Main(string[] args)
{
var twilioRestClient = ProxiedTwilioClientCreator.GetClient();
// Now that we have our custom built TwilioRestClient,
// we can pass it to any REST API resource action.
var message = MessageResource.Create(
to: new PhoneNumber("+15017122661"),
from: new PhoneNumber("+15017122661"),
body: "Hey there!",
// Here's where you inject the custom client
client: twilioRestClient
);
Console.WriteLine($"Message SID: {message.Sid}");
}
}
}
When you take a closer look at the constructor for TwilioRestClient
, you see that the httpClient
parameter is actually of type Twilio.Http.HttpClient
and not the System.Net.HttpClient
we were expecting. Twilio.Http.HttpClient
is actually an abstraction that allows plugging in any implementation of an HTTP client you want (or even creating a mocking layer for unit testing).
However, within the helper library, there is an implementation of Twilio.Http.HttpClient
called SystemNetHttpClient. This class wraps the System.Net.HttpClient
and provides it to the Twilio helper library to make the necessary HTTP requests.
Now that we understand how all the components fit together, we can create our own TwilioRestClient
that can connect through a proxy server. To make this reusable, here’s a class that you can use to create this TwilioRestClient
whenever you need one.
using System;
using System.Configuration;
using System.Net;
using System.Net.Http;
using System.Text;
using Twilio.Clients;
namespace CustomClientDotNet4x
{
public static class ProxiedTwilioClientCreator
{
private static HttpClient _httpClient;
private static void CreateHttpClient()
{
var proxyUrl = ConfigurationManager.AppSettings["ProxyServerUrl"];
var handler = new HttpClientHandler()
{
Proxy = new WebProxy(proxyUrl),
UseProxy = true
};
_httpClient = new HttpClient(handler);
var byteArray = Encoding.Unicode.GetBytes(
ConfigurationManager.AppSettings["ProxyUsername"]
+ ":"
+ ConfigurationManager.AppSettings["ProxyPassword"]
);
_httpClient.DefaultRequestHeaders.Authorization =
new System.Net.Http.Headers.AuthenticationHeaderValue(
"Basic",
Convert.ToBase64String(byteArray)
);
}
public static TwilioRestClient GetClient()
{
var accountSid = ConfigurationManager.AppSettings["TwilioAccountSid"];
var authToken = ConfigurationManager.AppSettings["TwilioAuthToken"];
if (_httpClient == null)
{
// It's best* to create a single HttpClient and reuse it
// * See: https://goo.gl/FShAAe
CreateHttpClient();
}
var twilioRestClient = new TwilioRestClient(
accountSid,
authToken,
httpClient: new Twilio.Http.SystemNetHttpClient(_httpClient)
);
return twilioRestClient;
}
}
}
Notice the use of ConfigurationManager.AppSettings
to retrieve various configuration settings:
- Your Twilio Account Sid and Auth Token (found here, in the Twilio console)
- Your proxy server URL (including the server name or address and port number)
- Your username and password for the proxy server
These settings can be placed in your Web.config or App.config (for a console app) like so:
<appSettings>
<!-- Find your Twilio Account Sid and Token at twilio.com/console -->
<add key="TwilioAccountSid" value="ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" />
<add key="TwilioAuthToken" value="your_auth_token" />
<!-- Replace the following with your proxy server's settings -->
<add key="ProxyServerUrl" value="http://127.0.0.1:8888"/>
<add key="ProxyUsername" value="your_username"/>
<add key="ProxyPassword" value="your_password"/>
</appSettings>
Here’s a console program that sends a text message and shows how it all can work together.
using System;
using Twilio.Rest.Api.V2010.Account;
using Twilio.Types;
namespace CustomClientDotNet4x
{
class Program
{
static void Main(string[] args)
{
var twilioRestClient = ProxiedTwilioClientCreator.GetClient();
// Now that we have our custom built TwilioRestClient,
// we can pass it to any REST API resource action.
var message = MessageResource.Create(
to: new PhoneNumber("+15017122661"),
from: new PhoneNumber("+15017122661"),
body: "Hey there!",
// Here's where you inject the custom client
client: twilioRestClient
);
Console.WriteLine($"Message SID: {message.Sid}");
}
}
}
Now that you know how to inject your own System.Net.HttpClient into the Twilio API request pipeline, you could use this technique to add custom HTTP headers to the requests (perhaps as required by an upstream proxy server).
You could also implement your own Twilio.Http.HttpClient to mock the Twilio API responses so your unit and integration tests can run quickly without the need to make a connection to Twilio. In fact, there’s already an example online showing how to do exactly that.
We can’t wait to see what you build!