名称 | 是否必须 | 示例值 | 说明 |
---|---|---|---|
请求地址 | UTF-8 | http://dc.28inter.com/sms.aspx | 如果服务器不支持解析, 请联系技术人员进行协助处理! |
名称 | 是否必须 | 示例值 | 描述 |
---|---|---|---|
发送任务命令 | 必须 | 固定设置为:send | 设置为固定的:send |
帐户 | 必须 | 28inter | 注册获或系统管理员分配取,登陆账号 |
密码 | 必须 | 123456 | 注册或系统管理员分配获取,登陆密码 |
用户ID | 必须 | 1001 | 注册或系统管理员分配获取,账户ID |
发送号码 | 必须 | 13000000000,13000000001 | 短信接收号码。支持单个或多个手机号码,传入号码为11位手机号码,不能加0或86。群发短信需传入多个号码,以英文逗号分隔,一次调用最多传入200个号码示例:13000000000,13000000001 |
发送内容 | 必须 | 【创信信息】您的验证码是:123456 | 发送短信的内容,整体做用urlencode。短信的格式为:【签名】放在内容的最前方。 |
sendtime | 可选 | 2000-12-31 00:00:10 | 短信定时发送时间。不设置默认为立即发送。格式为:YYYY-MM-DD HH:MM:SS |
rt | 可选 | json | 固定值 json,不填则为XML格式返回 |
GO实例 |
---|
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) _userid := "帐号" _account := "帐号" _password := "接口密码" _mobile := "158xxxxxxxx" _content := "【创信科技】您的订单编码:4557。如需帮助请联系客服。" v.Set("account", _account) v.Set("password", GetMd5String(_userid+_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://dc.28inter.com/sms.aspx", 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) |