我正在使用Twilio发送短信,并且说在向菲律宾发送短信时SMS的定价为0.02美元。我查看了我的帐户并注意到它收取了0.20美元。
此外,如何在发送短信时将“Gian”显示为发送者而不是随机的Twilio号码,因为我收到的短信为+123178232(无论如何),我希望将其更改为我的名字..任何人都可以谁曾经这样做过,或者谁知道如何帮助我?
答案 0 :(得分:0)
Twilio开发者传道者在这里。
如果出现结算错误,我建议您通过发送电子邮件至help@twilio.com并提供您的帐号SID,与我们的支持小组联系。
要使用字母数字发件人ID发送短信,您需要检查您要向supports alphanumeric sender IDs(菲律宾)发送短信的国家/地区,然后使用您要发送的文字而不是您的Twilio号码作为REST API调用中的from
参数。像这样:
// require the Twilio helper library
require "Services/Twilio.php";
// set your AccountSid and AuthToken from www.twilio.com/user/account
$AccountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
$AuthToken = "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY";
$client = new Services_Twilio($AccountSid, $AuthToken);
// send the message using your name instead of a number as the from parameter
$sms = $client->account->messages->sendMessage("Gian", $toNumber, "Your message");
请注意,如果您使用字母数字发件人ID发送,则收到这些短信的人将无法回复。在此处查看有关发件人ID的所有其他详细信息:https://www.twilio.com/help/faq/sms/what-is-alphanumeric-sender-id-and-how-do-i-get-started
希望这有帮助!