我已将Twilio库更新为最新版,现在SendMessage
已不再解析。
client.SendMessage(“YOUR_TWILIO_NUMBER”,“YOUR_NUMBER”,“来自Twilio的Ahoy!”);
如何使用当前的C#Twilio图书馆发送文字?
答案 0 :(得分:6)
Twilio开发者传道者在这里。
听起来您已从版本4更新为Twilio C# library的第5版。这是一个包含重大更改的更新,并且有一个完整的upgrade document available here。
对于sending messages,您需要更新以使用新的MessageResource
。这是一个例子:
using System;
using Twilio;
using Twilio.Rest.Api.V2010.Account;
using Twilio.Types;
using System.Collections.Generic;
class Example
{
static void Main(string[] args)
{
// Find your Account Sid and Auth Token at twilio.com/console
const string accountSid = "your_account_sid";
const string authToken = "your_auth_token";
TwilioClient.Init(accountSid, authToken);
var to = new PhoneNumber("+15017250604");
var message = MessageResource.Create(
to,
from: new PhoneNumber("+15558675309"),
body: "This is the ship that made the Kessel Run in fourteen parsecs?");
Console.WriteLine(message.Sid);
}
}
如果有帮助,请告诉我。