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.
|
|
<?php
namespace App\Service;use \Illuminate\Support\Facades\Log;
use TencentCloud\Sms\V20210111\SmsClient;use TencentCloud\Sms\V20210111\Models\SendSmsRequest;use TencentCloud\Common\Exception\TencentCloudSDKException;use TencentCloud\Common\Credential;use TencentCloud\Common\Profile\ClientProfile;use TencentCloud\Common\Profile\HttpProfile;
class SmsService{
private $client; private $cfg;
function __construct() { /* 必要步骤: * 实例化一个认证对象,入参需要传入腾讯云账户密钥对 secretId,secretKey。 * 这里采用的是从环境变量读取的方式,需要在环境变量中先设置这两个值。 * 你也可以直接在代码中写死密钥对,但是小心不要将代码复制、上传或者分享给他人, * 以免泄露密钥对危及你的财产安全。 * CAM密匙查询: https://console.cloud.tencent.com/cam/capi */ $this->cfg = config('sms.tencent'); $cred = new Credential($this->cfg['secret_id'], $this->cfg['secret_key']); // $cred = new Credential(getenv("TENCENTCLOUD_SECRET_ID"), getenv("TENCENTCLOUD_SECRET_KEY"));
// 实例化一个http选项,可选的,没有特殊需求可以跳过
$httpProfile = new HttpProfile(); // 配置代理
// $httpProfile->setProxy("https://ip:port");
$httpProfile->setReqMethod("GET"); // post请求(默认为post请求)
$httpProfile->setReqTimeout(30); // 请求超时时间,单位为秒(默认60秒)
$httpProfile->setEndpoint("sms.tencentcloudapi.com"); // 指定接入地域域名(默认就近接入)
// 实例化一个client选项,可选的,没有特殊需求可以跳过
$clientProfile = new ClientProfile(); $clientProfile->setSignMethod("TC3-HMAC-SHA256"); // 指定签名算法(默认为HmacSHA256)
$clientProfile->setHttpProfile($httpProfile); // 实例化要请求产品(以sms为例)的client对象,clientProfile是可选的
// 第二个参数是地域信息,可以直接填写字符串 ap-guangzhou,或者引用预设的常量
$this->client = new SmsClient($cred, 'ap-guangzhou', $clientProfile); }
public function send($templateId, $templateParamSet, $phoneNumberSet, $signName = '易游天下') { //if (!config('sms.debug') || config('sms.debug') == 'yes') {
// Log::debug([$templateId, $templateParamSet, $phoneNumberSet, $signName]);
// return true;
//}
foreach ($phoneNumberSet as $key => $phone) { if (!$phoneNumberSet[$key]) { unset($phoneNumberSet[$key]); } else { $phoneNumberSet[$key] = '+86' . $phoneNumberSet[$key]; } } if (count($phoneNumberSet) == 0) { return true; } if (!$signName) { $signName = $this->cfg['sign_name']; } try { // 实例化一个 sms 发送短信请求对象,每个接口都会对应一个request对象。
$req = new SendSmsRequest(); /* 填充请求参数,这里request对象的成员变量即对应接口的入参 * 你可以通过官网接口文档或跳转到request对象的定义处查看请求参数的定义 * 基本类型的设置: * 帮助链接: * 短信控制台: https://console.cloud.tencent.com/smsv2 * sms helper: https://cloud.tencent.com/document/product/382/3773 */ /* * 短信应用ID: 短信SdkAppId在 [短信控制台] 添加应用后生成的实际SdkAppId,示例如1400006666 */ $req->SmsSdkAppId = $this->cfg['sms_sdk_app_id']; /* 短信签名内容: 使用 UTF-8 编码,必须填写已审核通过的签名,签名信息可登录 [短信控制台] 查看 */ $req->SignName = $signName; /* 短信码号扩展号: 默认未开通,如需开通请联系 [sms helper] */ $req->ExtendCode = ""; /* 下发手机号码,采用 E.164 标准,+[国家或地区码][手机号] * 示例如:+8613711112222, 其中前面有一个+号 ,86为国家码,13711112222为手机号,最多不要超过200个手机号 */ $req->PhoneNumberSet = $phoneNumberSet; /* 国际/港澳台短信 SenderId: 国内短信填空,默认未开通,如需开通请联系 [sms helper] */ $req->SenderId = ""; /* 用户的 session 内容: 可以携带用户侧 ID 等上下文信息,server 会原样返回 */ $req->SessionContext = "xxx"; /* 模板 ID: 必须填写已审核通过的模板 ID。模板ID可登录 [短信控制台] 查看 */ $req->TemplateId = $this->cfg['templates'][$templateId]; /* 模板参数: 若无模板参数,则设置为空*/ $req->TemplateParamSet = $templateParamSet; // 通过client对象调用SendSms方法发起请求。注意请求方法名与请求对象是对应的
// 返回的resp是一个SendSmsResponse类的实例,与请求对象对应
$resp = $this->client->SendSms($req); // 输出json格式的字符串回包
$res = json_decode($resp->toJsonString()); foreach ($res->SendStatusSet as $item) { if ($item->Code != 'Ok') { $tpl = $this->cfg['templates'][$templateId]; $param = json_encode($templateParamSet); Log::error("SMS ERROR $item->Code[$tpl:$item->PhoneNumber:$param]$item->Message"); } } return True; } catch (TencentCloudSDKException $e) { Log::error($e); } return 0; }}
|