liqingbo27 / alisms-go

阿里云短信服务SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

阿里云短信平台SDK Go语言实现

DEMO

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("发送失败")
	}
}

About

阿里云短信服务SDK

License:MIT License


Languages

Language:Go 100.0%