截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PullSmsReplyStatus.php 3.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. require_once __DIR__.'/../../../vendor/autoload.php';
  3. // 导入对应产品模块的client
  4. use TencentCloud\Sms\V20190711\SmsClient;
  5. // 导入要请求接口对应的Request类
  6. use TencentCloud\Sms\V20190711\Models\PullSmsReplyStatusRequest;
  7. use TencentCloud\Common\Exception\TencentCloudSDKException;
  8. use TencentCloud\Common\Credential;
  9. // 导入可选配置类
  10. use TencentCloud\Common\Profile\ClientProfile;
  11. use TencentCloud\Common\Profile\HttpProfile;
  12. try {
  13. /* 必要步骤:
  14. * 实例化一个认证对象,入参需要传入腾讯云账户密钥对secretId,secretKey。
  15. * 这里采用的是从环境变量读取的方式,需要在环境变量中先设置这两个值。
  16. * 你也可以直接在代码中写死密钥对,但是小心不要将代码复制、上传或者分享给他人,
  17. * 以免泄露密钥对危及你的财产安全。
  18. * CAM密匙查询: https://console.cloud.tencent.com/cam/capi*/
  19. $cred = new Credential("xxx", "xxx");
  20. //$cred = new Credential(getenv("TENCENTCLOUD_SECRET_ID"), getenv("TENCENTCLOUD_SECRET_KEY"));
  21. // 实例化一个http选项,可选的,没有特殊需求可以跳过
  22. $httpProfile = new HttpProfile();
  23. $httpProfile->setReqMethod("GET"); // post请求(默认为post请求)
  24. $httpProfile->setReqTimeout(30); // 请求超时时间,单位为秒(默认60秒)
  25. $httpProfile->setEndpoint("sms.tencentcloudapi.com"); // 指定接入地域域名(默认就近接入)
  26. // 实例化一个client选项,可选的,没有特殊需求可以跳过
  27. $clientProfile = new ClientProfile();
  28. $clientProfile->setSignMethod("TC3-HMAC-SHA256"); // 指定签名算法(默认为HmacSHA256)
  29. $clientProfile->setHttpProfile($httpProfile);
  30. // 实例化要请求产品(以sms为例)的client对象,clientProfile是可选的
  31. $client = new SmsClient($cred, "ap-shanghai", $clientProfile);
  32. // 实例化一个 sms 发送短信请求对象,每个接口都会对应一个request对象。
  33. $req = new PullSmsReplyStatusRequest();
  34. /* 填充请求参数,这里request对象的成员变量即对应接口的入参
  35. * 你可以通过官网接口文档或跳转到request对象的定义处查看请求参数的定义
  36. * 基本类型的设置:
  37. * 帮助链接:
  38. * 短信控制台: https://console.cloud.tencent.com/sms/smslist
  39. * sms helper: https://cloud.tencent.com/document/product/382/3773 */
  40. /* 短信应用ID: 短信SdkAppid在 [短信控制台] 添加应用后生成的实际SdkAppid,示例如1400006666 */
  41. $req->SmsSdkAppid = "1400787878";
  42. /* 拉取最大条数,最多100条 */
  43. $req->Limit = 10;
  44. // 通过client对象调用DescribeInstances方法发起请求。注意请求方法名与请求对象是对应的
  45. // 返回的resp是一个DescribeInstancesResponse类的实例,与请求对象对应
  46. $resp = $client->PullSmsReplyStatus($req);
  47. // 输出json格式的字符串回包
  48. print_r($resp->toJsonString());
  49. // 也可以取出单个值。
  50. // 你可以通过官网接口文档或跳转到response对象的定义处查看返回字段的定义
  51. print_r($resp->TotalCount);
  52. }
  53. catch(TencentCloudSDKException $e) {
  54. echo $e;
  55. }