GO
GO代码示例
//接口类型:大狗短信国际短信接口。
//账户注册:请通过该地址开通账户http://sms.wx96.com/register.html
//注意事项:
//(1)调试期间,请仔细阅读接口文档;
//(2)请使用 用户名(例如:cf_demo123)及 APIkey来调用接口,APIkey在会员中心可以获取;
//(3)该代码仅供接入大狗短信短信接口参考使用,客户可根据实际需要自行编写;
package main
import (
"crypto/md5"
"encoding/hex"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"time"
)
func GetMd5String(s string) string {
h := md5.New()
h.Write([]byte(s))
return hex.EncodeToString(h.Sum(nil))
}
func main() {
v := url.Values{}
_now := strconv.FormatInt(time.Now().Unix(), 10)
//fmt.Printf(_now)
_account := "cf_xxxxxxx" //用户名是登录wx96.com账号名(例如:cf_demo123)
_password := "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" //查看密码请登录用户中心->国际短信>帐户参数设置->APIKEY
_mobile := "136xxxxxxxx"
_content := "Your verification code is 1125"
v.Set("account", _account)
v.Set("password", GetMd5String(_account+_password+_mobile+_content+_now))
v.Set("mobile", _mobile)
v.Set("content", _content)
v.Set("time", _now)
body := ioutil.NopCloser(strings.NewReader(v.Encode())) //把form数据编下码
client := &http.Client{}
req, _ := http.NewRequest("POST", "http://api.isms.wx96.com/webservice/isms.php?method=Submit&format=json", body)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value")
//fmt.Printf("%+v\n", req) //看下发送的结构
resp, err := client.Do(req) //发送
defer resp.Body.Close() //一定要关闭resp.Body
data, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(data), err)
}
