• PHP
  • Java
  • .NET(webform)
  • .NET(winform)
  • ASP
  • PYTHON
  • C++
  • Node.js
  • VB
  • PB

<?php
/**
 * Created by Zhongxinrongda.
 * Date: 2017/3/3
 * Time: 14:34
 * 功能:中信容大短信接口類
 * 說(shuō)明(míng):
 *一下(xià)代碼隻是提供簡單的(de)功能,方便客戶的(de)測試,如有(yǒu)其他(tā)需求,客戶可根據實際自(zì)行更改代碼。
 */
class smsApi{
    /*
     * @param string $sms_send_url 短信發送接口url
     * @param string $sms_query_url 短信餘額查詢接口url
     * @param string $userid  企業(yè)id
     * @param string $account 短信賬戶
     * @param string $password 賬戶密碼
     */
    var $sms_send_url='';
    var $sms_query_url='';
    var $userid='';
    var $account='';
    var $password='';
    public function sendSms($mobile,$content,$sendTime=''){
        $post_data=array(
            'userid'=>$this->userid,
            'account'=>$this->account,
            'password'=>$this->password,
            'mobile'=>$mobile,
            'content'=>$content,
            'sendTime'=>$sendTime //發送時(shí)間(jiān),為(wèi)空是即時(shí)發送
        );
        $url=$this->sms_send_url;
        $o='';
        foreach ($post_data as $k=>$v)
        {
            $o.="$k=".urlencode($v).'&';
        }
        $post_data=substr($o,0,-1);
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_URL,$url);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
        //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //如果需要将結果直接返回到變量裏,那(nà)加上(shàng)這(zhè)句。
        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
    }
}

package com.zxrd.interfacej;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;

/**
 * 中信容大短信接口Java示例
 *
 * @param url 應用地(dì)址,類似于http://ip:port/sms.aspx
 * @param userid 用戶ID
 * @param account 賬号
 * @param pssword 密碼
 * @param mobile 手機(jī)号碼,多個(gè)号碼使用","分割
 * @param content 短信內(nèi)容
 * @return 返回值定義參見HTTP協議(yì)文(wén)檔
 * @throws Exception
 */

public class Sms {
	public static String HTTPPost(String sendUrl, String sendParam) {
		String codingType = "UTF-8";
		StringBuffer receive = new StringBuffer();
		BufferedWriter wr = null;
		try {
			//建立連接
			URL url = new URL(sendUrl);
			HttpURLConnection URLConn = (HttpURLConnection) url.openConnection();
			URLConn.setDoOutput(true);
			URLConn.setDoInput(true);
			((HttpURLConnection) URLConn).setRequestMethod("POST");
			URLConn.setUseCaches(false);
			URLConn.setAllowUserInteraction(true);
			HttpURLConnection.setFollowRedirects(true);
			URLConn.setInstanceFollowRedirects(true);
			URLConn.setRequestProperty("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");
			URLConn.connect();

			DataOutputStream dos = new DataOutputStream(URLConn.getOutputStream());
			dos.writeBytes(sendParam);
			BufferedReader rd = new BufferedReader(new InputStreamReader(
					URLConn.getInputStream(), codingType));
			String line;
			while ((line = rd.readLine()) != null) {
				receive.append(line).append("\r\n");
			}
			rd.close();
		} catch (java.io.IOException e) {
			receive.append("訪問(wèn)産生(shēng)了異常-->").append(e.getMessage());
			e.printStackTrace();
		} finally {
			if (wr != null) {
				try {
					wr.close();
				} catch (IOException ex) {
					ex.printStackTrace();
				}
				wr = null;
			}
		}
		return receive.toString();
	}

	//發送短信
	public static String send(String sendUrl, String userid, String account,
			String password, String mobile, String content) {
		String codingType = "UTF-8";
		StringBuffer sendParam = new StringBuffer();
		try {
			sendParam.append("action=").append("send");
			sendParam.append("&userid=").append(userid);
			sendParam.append("&account=").append(URLEncoder.encode(account, codingType));
			sendParam.append("&password=").append(URLEncoder.encode(password, codingType));
			sendParam.append("&mobile=").append(mobile);
			sendParam.append("&content=").append(URLEncoder.encode(content, codingType));
		} catch (Exception e) {
			//處理(lǐ)異常
			e.printStackTrace();
		}
		return Sms.HTTPPost(sendUrl,sendParam.toString());
	}

	//查詢餘額
	public static String Overage(String sendUrl, String userid, String account,
			String password) {
		String codingType = "UTF-8";
		StringBuffer sendParam = new StringBuffer();
		try {
			sendParam.append("action=").append("overage");
			sendParam.append("&userid=").append(userid);
			sendParam.append("&account=").append(URLEncoder.encode(account, codingType));
			sendParam.append("&password=").append(URLEncoder.encode(password, codingType));
		} catch (Exception e) {
			//處理(lǐ)異常
			e.printStackTrace();
		}
		return Sms.HTTPPost(sendUrl,sendParam.toString());
	}

	public static String url = "http://ip:port/msg/";	//對(duì)應平台地(dì)址
	public static String userid = "0001";	//客戶id
	public static String account = "xxxx";	//賬号
	public static String password = "123456";	//密碼
	public static String mobile = "13000000000";	//手機(jī)号碼,多個(gè)号碼使用","分割
	public static String content= "尊敬的(de)用戶您的(de)驗證碼是:123456【你(nǐ)的(de)簽名】";	//短信內(nèi)容

	public static void main(String[] args) {
		//發送短信
		String sendReturn = Sms.send(url, userid, account, password, mobile, content);
		System.out.println(sendReturn);//處理(lǐ)返回值,參見HTTP協議(yì)文(wén)檔

		//查詢餘額
		String overReturn = Sms.Overage(url, userid, account, password);
		System.out.println(overReturn);//處理(lǐ)返回值,參見HTTP協議(yì)文(wén)檔
	}
}

        //發送短信的(de)方法,phone:手機(jī)号碼,content:短信內(nèi)容
		public static void smsSend(string phone,string content)
        {
            string userid = "*";//企業(yè)ID
            string account = "*";			//用戶名
            string password = "*";	//密碼    
            StringBuilder sbTemp = new StringBuilder();
            //POST 傳值
            sbTemp.Append("action=send&userid=" + userid + "&account=" + account + "&password=" + password + "&mobile=" + phone + "&content=" + content);
            byte[] bTemp = System.Text.Encoding.GetEncoding("GBK").GetBytes(sbTemp.ToString());
            String postReturn = doPostRequest("請求地(dì)址", bTemp);

			//解析返回的(de)XML數據
			 XmlDocument xmlDoc = new XmlDocument();
                xmlDoc.LoadXml(postReturn);
                XmlNode xmlNode = xmlDoc.SelectSingleNode("returnsms/returnstatus");
                string value = xmlNode.FirstChild.Value;	//Success表示發送成功
        }

        private static String doPostRequest(string url, byte[] bData)
        {
            System.Net.HttpWebRequest hwRequest;
            System.Net.HttpWebResponse hwResponse;

            string strResult = string.Empty;
            try
            {
                hwRequest = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(url);
                hwRequest.Timeout = 5000;
                hwRequest.Method = "POST";
                hwRequest.ContentType = "application/x-www-form-urlencoded";
                hwRequest.ContentLength = bData.Length;

                System.IO.Stream smWrite = hwRequest.GetRequestStream();
                smWrite.Write(bData, 0, bData.Length);
                smWrite.Close();
            }
            catch (System.Exception err)
            {
                WriteErrLog(err.ToString());
                return strResult;
            }

            //get response
            try
            {
                hwResponse = (HttpWebResponse)hwRequest.GetResponse();
                StreamReader srReader = new StreamReader(hwResponse.GetResponseStream(), Encoding.ASCII);
                strResult = srReader.ReadToEnd();
                srReader.Close();
                hwResponse.Close();
            }
            catch (System.Exception err)
            {
                WriteErrLog(err.ToString());
            }

            return strResult;
        }

        private static void WriteErrLog(string strErr)
        {
            Console.WriteLine(strErr);
            System.Diagnostics.Trace.WriteLine(strErr);
     &nnbsp;  }

public  string HttpPost(string uri, string parameters)
        {
           
            WebRequest webRequest = WebRequest.Create(uri);
        
            webRequest.ContentType = "application/x-www-form-urlencoded";
            webRequest.Method = "POST";
            byte[] bytes = Encoding.UTF8.GetBytes(parameters);//這(zhè)裏需要指定提交的(de)編碼
            System.GC.Collect();
            Stream os = null;
            try
            { // send the Post
                webRequest.ContentLength = bytes.Length;   //Count bytes to send
                os = webRequest.GetRequestStream();
                os.Write(bytes, 0, bytes.Length);         //Send it
                os.Flush();
                os.Close();
            }
            catch (WebException ex)
            {
                MessageBox.Show(ex.Message, "HttpPost: Request error",
                   MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
          
            try
            { // get the response
                WebResponse webResponse = webRequest.GetResponse();
                if (webResponse == null)
                { return null; }
                StreamReader sr = new StreamReader(webResponse.GetResponseStream(), System.Text.Encoding.UTF8);
                //上(shàng)面一句需要将返回的(de)編碼進行指定,指定成默認的(de)即可
                return sr.ReadToEnd().Trim();
 
            }
            catch (WebException ex)
            {
                MessageBox.Show(ex.Message, "HttpPost: Response error",
                   MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        
        }


      private void button3_Click(object sender, EventArgs e)
        {
             string url="";
             string userid="";
             string account="";
             string password="";
            if (checkBox1.Checked)
            
            else
            
        }

<%
Function getHTTPPage(url)
Dim Http
Set Http = Server.CreateObject("MSXML2.XMLHTTP")
Http.Open "Get", url, False
Http.send()
If Http.readystate <> 4 Then
Exit Function
End If
getHTTPPage = BytesToBstr(Http.responseBody, "UTF-8")
Set Http = Nothing
If Err.Number <> 0 Then Err.Clear
End Function

Function BytesToBstr(body, Cset)
Dim objstream
Set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode = 3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
Set objstream = Nothing
End Function

response.write getHTTPPage("請求地(dì)址?action=send&userid=企業(yè)ID&account=賬号&password=密碼&mobile=手機(jī)号碼&content=內(nèi)容&sendTime=&extno=")

%>

# -*- coding: utf-8 -*-
#特别注意:參數傳遞時(shí)去(qù)除“<>”符号!
import requests;
import json;
def send_messag_example():
    resp = requests.post(("<接口地址>"),
    data={
"action": "send",
"userid": "<企业id>",
"account": "<客户用户名>",
"password": "<客户密码>",
"mobile": "<手机号码>",
"content": "<短信内容>",
"type": "json"
    },timeout=3 , verify=False);
    result =  json.loads( resp.content )
    print result
if __name__ == "__main__":
    send_messag_example();
#注意:以上(shàng)參數傳入時(shí)不包括“<>”符号

#define MAXLINE 4096
#define MAXSUB  2000
#define MAXPARAM 2048

char *hostname = "123.59.105.84";//相(xiàng)應服務器(qì)IP
 
/**
 * * 發http post請求
 * */
ssize_t http_post(char *poststr)
{
    char sendline[MAXLINE + 1], recvline[MAXLINE + 1];
    ssize_t n;
    snprintf(sendline, MAXSUB,
        "POST %s HTTP/1.0\r\n"
        "Host: URL\r\n"//URL請求地(dì)址
        "Content-type: application/x-www-form-urlencoded\r\n"
        "Content-length: %zu\r\n\r\n"
        "%s", strlen(poststr), poststr);
    write(sockfd, sendline, strlen(sendline));
    printf("\n%s", sendline);
    printf("\n--------------------------\n");
    while ((n = read(sockfd, recvline, MAXLINE)) > 0) {
        recvline[n] = '\0';
        printf("%s\n", recvline);
    }
    return n;
}

 * * 發送短信
 * */
ssize_t send_sms(char *account, char *password, char *mobile, char *content)
{
    char params[MAXPARAM + 1];
    char *cp = params;
 
    sprintf(cp,"action=send&userid=%s&account=%s&password=%s&mobile=%s&content=%s", userid, account, password, mobile, content);   
 
    return http_post(cp);
}
 
int main(void)
{
    struct sockaddr_in servaddr;
    char str[50];
 
    //建立socket連接
    sockfd = socket(AF_INET, SOCK_STREAM, 0);
    bzero(&servaddr, sizeof(servaddr));
    servaddr.sin_addr.s_addr = inet_addr(hostname);
    servaddr.sin_family = AF_INET;
    servaddr.sin_port = htons(80);
    inet_pton(AF_INET, str, &servaddr.sin_addr);
    connect(sockfd, (SA *) & servaddr, sizeof(servaddr));
 
 
    char *userid= "企業(yè)ID"
    char *account = "賬号";
    char *password = "密碼";
    char *mobile = "手機(jī)号";
    //必須帶簽名
    char *msg = "【簽名】您的(de)驗證碼是123400";
 
    //get_balance(account, password);
    send_sms(account, password, mobile, content);
    close(sockfd);
    exit(0);
}

var http = require('http');
var querystring = require('querystring');
var postData = {
	action:'send',  //發送任務命令,設為(wèi)固定的(de):send
    userid:'企業(yè)ID',
	account:'用戶名',
    password:'密碼',
    mobile:'手機(jī)号碼',
    content:'【簽名】您的(de)驗證碼是:610912,3分鐘(zhōng)內(nèi)有(yǒu)效。如非您本人(rén)操作(zuò),可忽略本消息。',
    type:'json'
};
var content = querystring.stringify(postData);
var options = {
    host:'域名',  //前面不要加http
    path:'/2/sms/send.html',
    method:'POST',
    agent:false,
    rejectUnauthorized : false,
    headers:{
        'Content-Type' : 'application/x-www-form-urlencoded', 
        'Content-Length' :content.length
    }
};
var req = http.request(options,function(res){
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log(JSON.parse(chunk));
    });
    res.on('end',function(){
        console.log('over');
    });
});
req.write(content);
req.end();

Public Function getHtmlStr(strUrl As String) '獲取遠(yuǎn)程接口函數
On Error Resume Next
Dim XmlHttp As Object, stime, ntime
Set XmlHttp = CreateObject("Microsoft.XMLHTTP")
XmlHttp.open "GET", strUrl, True
XmlHttp.send
stime = Now '獲取當前時(shí)間(jiān)
While XmlHttp.ReadyState <> 4
DoEvents
ntime = Now '獲取循環時(shí)間(jiān)
If DateDiff("s", stime, ntime) > 3 Then getHtmlStr = "": Exit Function
Wend
getHtmlStr = StrConv(XmlHttp.responseBody, vbUnicode)
Set XmlHttp = Nothing
End Function

代碼使用:在窗體(tǐ)代碼相(xiàng)應位置寫如下(xià)代碼
dim a as string
a=getHtmlStr("url?action=send&userid=企業(yè)ID&account=賬号&password=密碼&mobile=手機(jī)号碼&content=內(nèi)容&sendTime=&extno=) '獲取接口返回值

建個(gè)對(duì)象n_ir_msgbox,繼承自(zì)internetresult,直接在internetdata函數中返回1(這(zhè)一步很(hěn)關鍵,必須有(yǒu)個(gè)返回值)

建立窗口,定義實例變量n_ir_msgbox iir_msgbox

增加按鈕,click事(shì)件(jiàn)中:

inet linet_base 
String ls_url
integer li_rc

iir_msgbox = CREATE n_ir_msgbox

if GetContextService("Internet", linet_base) = 1 THEN

 ls_url = "URL?action=send&userid=企業(yè)ID&account=帳号&password=密碼&mobile=手機(jī)号碼&content=短信內(nèi)容"
 
 li_rc = linet_base.GetURL(ls_url, iir_msgbox)
   
END IF

DESTROY iir_msgbox