/sfwechat

使用go写的微信jssdk

Primary LanguageGo

使用go写的微信jssdk

使用方法参考main.go

package main

import (
	"fmt"
	"sfwechat/jssdk"
)

func main() {
	jssdk := jssdk.New("wx02d6c9061******", "7acfb40fb2f70cd331a*******","http://a.com")
	config := jssdk.GetWechatConfig()
	fmt.Println(config)
}

在项目中的使用方式

go get https://github.com/SmallForest/sfwechat

在项目中应用

import "github.com/SmallForest/sfwechat/jssdk"
func main() {
	jssdk := jssdk.New("wx02d6c9061******", "7acfb40fb2f70cd331a*******","http://a.com")
	config := jssdk.GetWechatConfig()
	fmt.Println(config)
}