We are building a ASP.NET MVC app, which requires SMS integration. I have downloaded the latest pre-release (through nuget) and used the source code as mentioned in API section. However, it seems to have an issue
var message = twilio.SendMessage(...);
Console.WriteLine(message.Sid);...
Where the Sid
is not available in the message
object. Instead I am using Status
.
The actual problem is when I try to send as per the guidelines and API tokens available in the SMS testing page, I got the message.Status as "Faulted" and no SMS was sent. Even I tried with the test page @ https://www.twilio.com/user/account/developer-tools/api-explorer/message-create, that too didn't send a message indeed.
Is there anything I am missing?