Twilio字母数字发送者ID

时间:2018-06-11 10:16:37

标签: twilio

我搜索了Twilio的所有文档。我发现的只是开始使用字母数字发送者ID:https://support.twilio.com/hc/en-us/articles/223181348-Getting-Started-with-Alphanumeric-Sender-ID-for-Twilio-Programmable-SMS和类似的文章。

没有任何链接解释我可以添加它的位置。请指导。

1 个答案:

答案 0 :(得分:1)

Twilio开发者传道者在这里。

一旦您的帐户启用了字母数字发件人ID,如the article you linked to中所述,您可以通过以下两种方式之一使用它们。

sending a message using the messages resource时,您可以将字母数字发件人ID设置为From参数。在本文中关于changing the sender ID for SMS messages或在我撰写的关于sending messages with alphanumeric sender IDs的博客文章中对此进行了更深入的解释。

或者,您可以自己创建messaging service with Copilot并在那里设置字母数字发件人ID。这样做的好处是,您可以设置一个号码池,以便发送到那些不支持字母数字发件人ID的国家/地区,例如美国。

从您的Stack Overflow帐户看起来您主要为后端编写PHP。这是一个简单的例子:

use Twilio\Rest\Client;

// Your Account Sid and Auth Token from twilio.com/console
$sid    = "your_account_sid";
$token  = "your_auth_token";
$twilio = new Client($sid, $token);

$message = $twilio->messages
                  ->create($toNumber,
                           array(
                               "body" => "This is a branded message",
                               "from" => "ALPHA"
                           )
                  );

让我知道这是否有帮助。