diff --git a/const.go b/const.go index cda16c1..aeeda61 100644 --- a/const.go +++ b/const.go @@ -43,8 +43,8 @@ const ( ) var smsBusinessWithRequestPath = map[SmsBusiness]requestPathIndex{ - SmsBusinessHs: sendSms, - SmsBusinessDefault: sendSmsHs, + SmsBusinessHs: sendSmsHs, + SmsBusinessDefault: sendSms, } type RequestWay int8 diff --git a/test/msg_test.go b/test/msg_test.go index 2a89355..dc8969c 100644 --- a/test/msg_test.go +++ b/test/msg_test.go @@ -3,26 +3,25 @@ package test import ( "context" "fmt" - "gitea.cdlsxd.cn/self-tools/l_msg_api" "testing" + + "gitea.cdlsxd.cn/self-tools/l_msg_api" ) const ( - ClientKey = "ymt" - ClientSecret = "ymt" + ClientKey = "finance" + ClientSecret = "finance" serverHost = "http://121.199.38.107:8000" local = "http://127.0.0.1:8001" ) func TestSms(t *testing.T) { - msg, err := l_msg_api.NewMessageCenter(serverHost, ClientKey, ClientSecret, "sms", "sms") + msg, err := l_msg_api.NewMessageCenter(serverHost, ClientKey, ClientSecret, "sms2", "cron_sms2") if err != nil { panic(err) } - res, err := msg.SendSms(context.TODO(), []string{"15082245107"}, `{"content": "测试"}`) fmt.Println(res, err) - } func TestAccess(t *testing.T) {