Няма описание

sms_edit_template.php 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. require_once __DIR__ . '/../../autoload.php';
  3. use Qiniu\Auth;
  4. use Qiniu\Sms\Sms;
  5. // 控制台获取密钥:https://portal.qiniu.com/user/key
  6. $accessKey = getenv('QINIU_ACCESS_KEY');
  7. $secretKey = getenv('QINIU_SECRET_KEY');
  8. $auth = new Auth($accessKey, $secretKey);
  9. $client = new Sms($auth);
  10. // 编辑模板
  11. // 参考文档:https://developer.qiniu.com/sms/api/5895/sms-api-edit-template
  12. // 模板审核标准:https://developer.qiniu.com/sms/manual/5814/template-specification
  13. $template_id = 'xxxxxx'; // 模板 ID
  14. $name = '验证码'; // 模板名称
  15. $template = '验证码为: ${code},如非本人操作,请忽略本短信'; // 模板内容 可设置自定义变量,发送短信时候使用
  16. $description = '发送验证码'; // 申请理由简述
  17. $signature_id = 'xxxxxx'; // 已经审核通过的签名
  18. list($ret, $err) = $client->updateTemplate($template_id, $name, $template, $description, $signature_id);
  19. echo "\n====> edit template result: \n";
  20. if ($err !== null) {
  21. var_dump($err);
  22. } else {
  23. echo "\n====> Update Template Successfully\n";
  24. }