Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 拉取短信状态类
  5. *
  6. */
  7. class SmsStatusPuller
  8. {
  9. private $url;
  10. private $appid;
  11. private $appkey;
  12. private $util;
  13. /**
  14. * 构造函数
  15. *
  16. * @param string $appid sdkappid
  17. * @param string $appkey sdkappid对应的appkey
  18. */
  19. public function __construct($appid, $appkey)
  20. {
  21. $this->url = "https://yun.tim.qq.com/v5/tlssmssvr/pullstatus";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. * 拉取回执结果
  28. *
  29. * @param int $type 拉取类型,0表示回执结果,1表示回复信息
  30. * @param int $max 最大条数,最多100
  31. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  32. */
  33. private function pull($type, $max)
  34. {
  35. $random = $this->util->getRandom();
  36. $curTime = time();
  37. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  38. $data = new \stdClass();
  39. $data->sig = $this->util->calculateSigForPuller($this->appkey, $random, $curTime);
  40. $data->time = $curTime;
  41. $data->type = $type;
  42. $data->max = $max;
  43. return $this->util->sendCurlPost($wholeUrl, $data);
  44. }
  45. /**
  46. * 拉取回执结果
  47. *
  48. * @param int $max 拉取最大条数,最多100
  49. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  50. */
  51. public function pullCallback($max)
  52. {
  53. return $this->pull(0, $max);
  54. }
  55. /**
  56. * 拉取回复信息
  57. *
  58. * @param int $max 拉取最大条数,最多100
  59. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  60. */
  61. public function pullReply($max)
  62. {
  63. return $this->pull(1, $max);
  64. }
  65. }