twilio-csharp
twilio-csharp copied to clipboard
Twilio C#/.NET Helper Library for .NET6+.
I think smartEncoded should be default true for cost effective messages. We werent aware of this option in our project and we were sending sms in UCS-2 encoding. That means...
The [Twilio console for API keys](https://www.twilio.com/console/project/api-keys) states: > You can use API Keys to authenticate to the REST API using basic auth, with user=KeySid and password=KeySecret. This made me think...
### Issue Summary Serialization of MessageResource with Newtonsoft.json fails when in place of 'from' parameter , 'messagingserviceid' is provided ### Code Snippet ```csharp private async void CreateMessageResourceAsync(string serviceId, string recipient,...
I have implemented validation as per https://www.twilio.com/docs/usage/tutorials/how-to-secure-your-csharp-aspnet-core-app-by-validating-incoming-twilio-requests I have my .net core 3.0 application where callback url is like https://mydomain.com:81/Twilio/TwilioAction Request validator seems always rejecting the validation. Same code with...
**5.0.0-rc4** **api/taskrouter/v1/workspace** I'd like to test some logic that interacts with Twilio, but I'm not able to mock classes like WorkerResource since they either (a) don't derive from an interface...
### Issue Summary I am currently building UiPath activities to wrap this SDK. UiPath is built on Windows Workflow Foundation. Workflow activities provide a cancellation token so that activities can...
Provide strong names for these assemblies. This allows them to be referenced by other assemblies, which also have strong names. This is a best practice for all assemblies, especially those...
You must specify a culture when calling the ToString method on a numeric type. There are different decimal separators in different countries and when you do not specify culture, national...
Perhaps you should consider nuget signing: https://docs.microsoft.com/en-us/nuget/create-packages/sign-a-package https://docs.microsoft.com/en-us/nuget/reference/signed-packages-reference You'll get a blue checkmark in NuGet so people know it's the right package author (instead of knock-offs).
### Issue Summary Any chance on getting the library updated past netstandard 2.0. By targeting net6.0 and later, you can use system.text.json and not need newtonsoft. You can still create...