package main
import (
"github.com/qinxin0720/alisms-go/SmsClient"
"net/http"
"log"
)
const (
accessKeyId = "yourAccessKeyId"
secretAccessKey = "yourAccessKeySecret"
)
func main() {
sc, err := SmsClient.NewSMSClient(accessKeyId, secretAccessKey)
if err != nil {
return
}
statusCode, _, _ := sc.SendSMS(SmsClient.Params{"1500000000", "阿里云短信", "SMS_000000", `{"code":"12345"}`})
if statusCode == http.StatusOK {
log.Println("发送成功")
} else {
log.Println("发送失败")
}
}
-
Notifications
You must be signed in to change notification settings - Fork 5
阿里云短信平台SDK Go语言实现
License
qinxin0720/alisms-go
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
阿里云短信平台SDK Go语言实现
Topics
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published