返回介绍

Asp DEMO

发布于 2024-06-22 00:52:22 字数 2443 浏览 0 评论 0 收藏 0

功能说明:该接口要求提前在云片后台添加模板,提交短信时,系统会自动匹配审核通过的模板,匹配成功任意一个模板即可发送。系统已提供的默认模板添加签名后可以直接使用。

<%
'安装IIS并重启后可用
@LANGUAGE="VBSCRIPT" CODEPAGE="65001"
%>
<%
response.contenttype = "text/html;charset=utf-8"
'提交方法
method = "POST"
'您要发送的手机号
mobile = Server.URLEncode("xxxxxxxxxxx")
'修改为您的apikey(https://www.yunpian.com)登录官网后获取
apikey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
'发送内容
text ="【云片网】您的验证码是1234,5分钟内有效。"
'使用模板号
tpl_id = 365741
'使用模板内容
tpl_value = Server.URLEncode("#code#=1234&#min#=5")
'查询账户信息https地址
url_get_user   = "https://sms.yunpian.com/v2/user/get.json"
'智能匹配模板发送https地址
url_send_sms   = "https://sms.yunpian.com/v2/sms/single_send.json"
'指定模板发送接口https地址
url_tpl_sms   = "https://sms.yunpian.com/v2/sms/tpl_single_send.json"
'发送语音验证码接口https地址
url_send_voice = "https://voice.yunpian.com/v2/voice/send.json"
data_get_user = "apikey=" & apikey
data_send_sms = "apikey=" & apikey & "&mobile=" & mobile & "&text=" & text
data_tpl_sms = "apikey=" & apikey & "&mobile=" & mobile & "&tpl_id=" & tpl_id &_
    "&tpl_value=" & tpl_value
data_send_voice = "apikey=" & apikey & "&mobile=" & mobile & "&code=" & "1234"
response.write GetBody(url_get_user,data_get_user)
response.write GetBody(url_send_sms,data_send_sms)
response.write GetBody(url_tpl_sms,data_tpl_sms)
response.write GetBody(url_send_voice,data_send_voice)
Function GetBody(url,data) 
    Set https = Server.CreateObject("MSXML2.ServerXMLHTTP") 
    With https
    .Open method, url, False
    .setRequestHeader "Content-Type","application/x-www-form-urlencoded"
    .Send data
    
    GetBody= .ResponseBody
    End With
    GetBody = bytetostr(https.ResponseBody,"utf-8")
    Set https = Nothing
    
End Function
function bytetostr(vin,cset)
dim bs,sr
set bs = server.createObject("adodb.stream")
    bs.type = 2
    bs.open
    bs.writetext vin
    bs.position = 0
    bs.charset = cset
    bs.position = 2
    sr = bs.readtext
    bs.close
set bs = nothing
bytetostr = sr
end function
%>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文