假设我想设置一个触发器来触发每1000条SMS消息。 在创建触发器时,如下面的API文档,如何重置“TriggerBy”字段,以便触发下一个1000?
<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once('/path/to/twilio-php/Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "AC828da6a8765c3edaf2727d241dc68b87";
$token = "{{ auth_token }}";
$client = new Services_Twilio($sid, $token);
$trigger = $client->account->usage_triggers->create("sms", "1000", "http://www.example.com/", array());
echo $trigger->sid;
答案 0 :(得分:0)
Twilio开发者传播者在这里。
如果您希望重复触发,可以使用以下代码:
$trigger = $client->account->usage_triggers->create("sms", "1000", "http://example.com", array("Recurring"=>"daily"));
当您点击1000条短信时,每天都会通知您。如果您希望在短于每日的时间内收到通知,则必须为每个增量(1000,2000,3000,4000)设置警报触发器。
希望有所帮助!