I am using Twilio REST client in Visual Studio 2017. After adding a Studio Flow for a simple SMS autoresponder, I am no longer able to use the Twilio REST API to send a SMS message from my ASP.net app.
The error message is "Upgrade Required"
at Twilio.Clients.TwilioRestClient.ProcessReponse(Reponse response)
at Twilio.Rest.Api.V2010.Account.MessageResource.Create(CreateMessageOptions options, ITwilioRestClient client)
at...
I already tried upgrading the Twilio REST API helper library NuGet package to latest, version 5.28.0.
The error occurs on this basic SMS sending code that used to work.
Dim message = MessageResource.Create(body:=strBody, from:=New Twilio.Types.PhoneNumber(Credentials.TwilioFixityNewNumberFormatted), [to]:=New Twilio.Types.PhoneNumber(strFormattedNumber))
Return message.Sid
There are no error messages or notifications in my Twilio account that something is wrong or needed. Has anyone experienced something like this?