首页 > Web开发 > 详细

【ASP】创蓝253云通讯paas平台短信验证码接口调用demo

时间:2018-05-25 16:49:01      阅读:275      评论:0      收藏:0      [点我收藏+]
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Function Post(url,data)
dim Https
set Https=server.createobject("MSXML2.XMLHTTP")
Https.open "POST",url,false
Https.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
Https.send data
if Https.readystate=4 then
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write Https.responseBody
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "utf-8"
Post = objstream.ReadText
objstream.Close
set objstream = nothing
set https=nothing
end if
End Function

dim target,post_data
target = "http://222.73.117.156/msg/HttpBatchSendSM"
post_data = "account=创蓝账号&pswd=创蓝密码&mobile=手机号&msg="&Server.URLEncode("短信测试")&"&needstatus=true&extno="

response.Write(Post(target,post_data))
‘‘//请自己解析Post(target,post_data)返回的字符串并实现自己的逻辑
‘‘第一行xxxxxxx,0表示成功,其它的参考http.doc文档
%>

【ASP】创蓝253云通讯paas平台短信验证码接口调用demo

原文:http://blog.51cto.com/13750674/2120328

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!