短信Key等馨馨处理

This commit is contained in:
wyw 2025-05-19 17:18:30 +08:00
parent e07a6dd82d
commit 50fcce9cd0

View File

@ -20,8 +20,8 @@ namespace APT.Utility
// 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
Credential cred = new Credential
{
SecretId = "AKIDwfAXfWdUcUUGl0BiGZeU5Su5g9LItwd4",
SecretKey = "JZZCaWIqgjKehEYeU5PTR8h6OQL4Ynoh"
SecretId = "AKID54tOguzrW0PdeU7Zs13wfEakiU3OXVFm",
SecretKey = "PaZKbljW8ZChNuEMGzUnslTdhaGj0CD3"
};
ClientProfile clientProfile = new ClientProfile();
HttpProfile httpProfile = new HttpProfile();
@ -29,10 +29,11 @@ namespace APT.Utility
clientProfile.HttpProfile = httpProfile;
SmsClient client = new SmsClient(cred, "ap-guangzhou", clientProfile);
SendSmsRequest req = new SendSmsRequest();
req.SignName = "宁化行洛坑钨矿有限公司";
req.SignName = "福建省连城锰矿";
req.PhoneNumberSet = phoneNumbers;
req.SmsSdkAppId = "1400298980";
req.SmsSdkAppId = "1400987501";
req.TemplateId = TemplateId;
if (templateParams != null && templateParams.Length > 0)
req.TemplateParamSet = templateParams;
return client.SendSmsSync(req);
}