这是我尝试发送邮件时遇到的错误。



我的代码是:

const string accountSid = "Value";
const string authToken = "Value";
TwilioClient.Init(accountSid, authToken);
var to = new PhoneNumber("+whatsapp:+13233633791");
var message = MessageResource.Create(
    to,
    from: new PhoneNumber("+whatsapp:+12037179461"),
    body: "Hi Joe! Your order D45987AB will arrive on 8/12/2018 before 8 pm.");
    Console.WriteLine(message.Sid);

最佳答案

根据他们的文档,Twilio API现在需要TLS v1.2和字符串密码套件。

在您的方法内部,在调用MessageResource.Create()之前,添加

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls
                                                | SecurityProtocolType.Tls11
                                                | SecurityProtocolType.Tls12
                                                | SecurityProtocolType.Ssl3;

关于twilio - 在C#中集成twilio whatsapp时出现错误需要升级,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55529071/

10-11 08:27