代码拉取完成,页面将自动刷新
同步操作将从 陈维龙/cloud_hr 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
from tencentcloud.common import credential
from tencentcloud.common.profile.client_profile import ClientProfile
from tencentcloud.common.profile.http_profile import HttpProfile
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
from tencentcloud.sms.v20210111 import sms_client, models
import random
import json
def generate_code():
code = str(random.randint(10000, 99999))
return code
cred = credential.Credential("AKIDa1GI9p3OYWGoAJG0Zw75qRq46wZ1HLDr", "WqwoUxDH8oJZbYMyMbeU7XlneIjz2ua5")
# 实例化一个http选项,可选的,没有特殊需求可以跳过
httpProfile = HttpProfile()
httpProfile.endpoint = "sms.tencentcloudapi.com"
# 实例化一个client选项,可选的,没有特殊需求可以跳过
clientProfile = ClientProfile()
clientProfile.httpProfile = httpProfile
# 实例化要请求产品的client对象,clientProfile是可选的
client = sms_client.SmsClient(cred, "ap-guangzhou", clientProfile)
# 实例化一个请求对象,每个接口都会对应一个request对象
req = models.SendSmsRequest()
params = {
"PhoneNumberSet": ["15279377224"],
"SmsSdkAppId": "1400855213",
"SignName": "大四实训公众号",
"TemplateId": "1932231",
"TemplateParamSet": [generate_code()]
}
req.from_json_string(json.dumps(params))
resp = client.SendSms(req)
print(resp)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。