久久亚洲国产成人精品性色,99久久精品综合,亚洲天堂欧洲,思思99re热这里只有国产中文精品

http_asp短信接口示例

一、下載源碼

ASP DEMO下載

二、使用幫助

2.1 DEMO結(jié)構(gòu)

說明:
1、demo.asp:使用示例;
2、smsapi.asp:此文件中封裝了江蘇美圣短信接口;
3、unit.class.asp:此文件中是常用的函數(shù);

2.2 初始參數(shù)

	'用戶賬號(hào)
	username ="JSM******"
    '用戶密碼
	password = "******"
    '通訊Key/校驗(yàn)碼
    veryCode="******"

2.3 接口使用

2.3.1 普通短信

    Function SendTextSms(m,c)
      dim  url_temp
      url_temp=  url &"sendMsg" &"&username="&username &"&password="&password &"&veryCode="&veryCode &"&mobile="&m &"&content="&c&"&code="&code
      SendTextSms=PostHTTPPage(url_temp)
	End Function 
如果賬號(hào)開了免審,或者是做模板短信,將會(huì)按照規(guī)則正常發(fā)送,而不會(huì)進(jìn)人工審核平臺(tái)

2.3.2 模板短信

    Function  SendTemplateSms(mobile, tempId, content,sendtime)
       dim  url_temp
       url_temp=  url&"sendMsg" &"&username=" &username &"&password=" &password &"&veryCode="&veryCode &"&mobile="&mobile &"&content="& content &"&msgtype=2" &"&tempid="&tempId &"&code=utf-8"
       SendTemplateSms=PostHTTPPage(url_temp)
    End Function 

2.3.3 獲得狀態(tài)報(bào)告

	Function QueryReport()
       dim  url_temp
       url_temp=  url&"queryReport" &"&username=" &username &"&password=" &password &"&veryCode="&veryCode
       QueryReport=PostHTTPPage(url_temp)
	End Function 
只能查詢當(dāng)天的,已獲取的狀態(tài)報(bào)告后續(xù)不會(huì)再獲取

2.3.4 獲得上行短信

	Function QueryMo()
      dim  url_temp
      url_temp=  url &"queryMo" &"&username="&username &"&password="&password &"&veryCode="&veryCode
      QueryMo=PostHTTPPage(url_temp)
	End Function 
只能查詢當(dāng)天的,已獲取的上行短信后續(xù)不會(huì)再獲取

2.3.5 獲得余額

    Function GetAmount()
      dim  url_temp
      url_temp=  url &"getAmount" &"&username="&username &"&password="&password &"&veryCode="&veryCode
      GetAmount=PostHTTPPage(url_temp)
    End Function