alisms

module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 1, 2018 License: MIT

README

阿里云短信平台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("发送失败")
	}
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL