|
@@ -10,8 +10,11 @@ import (
|
|
|
"net/url"
|
|
|
)
|
|
|
|
|
|
+const SmsExpireMinute = 15
|
|
|
+
|
|
|
func SendSmsCode(mobile, vCode string) bool {
|
|
|
- tplId := "65692"
|
|
|
+
|
|
|
+ tplId := "254663"
|
|
|
result, err := sendSms(mobile, tplId, vCode)
|
|
|
if err != nil {
|
|
|
fmt.Println("发送短信失败")
|
|
@@ -43,10 +46,11 @@ func sendSms(mobile, tplId, code string) (rs []byte, err error) {
|
|
|
|
|
|
param := url.Values{}
|
|
|
|
|
|
- param.Set("mobile", mobile)
|
|
|
- param.Set("tpl_id", tplId)
|
|
|
- param.Set("tpl_value", "#code#="+code)
|
|
|
- param.Set("key", utils.JhGnAppKey)
|
|
|
+ param.Set("mobile", mobile)
|
|
|
+ param.Set("tpl_id", tplId)
|
|
|
+ tplVal := fmt.Sprintf(`#code#=%s&#m#=%d`, code, SmsExpireMinute)
|
|
|
+ param.Set("tpl_value", tplVal)
|
|
|
+ param.Set("key", utils.JhGnAppKey)
|
|
|
|
|
|
Url, err = url.Parse(apiURL)
|
|
|
if err != nil {
|