2 Star 12 Fork 1

纸喵软件 / wechat-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
倒霉狐狸 提交于 2020-05-09 22:56 . readme

微信SDK

此工程为 https://github.com/silenceper/wechat的二开版本

主场开发场景是多第三方平台为起点控制多小程序包含支付全套流程中间件

因此本工程开发线路也是围绕着主场工程线路展开,有坑排坑,有缺补缺

主场工程已开源

纸喵软件/wechat

快速开始

sdk实例获取


// memcache := cache.NewMemcache("127.0.0.1:11211")
memcache := chache.NewMemory()

wcConfig := &wechat.Config{
	AppID:          cfg.AppID,
	AppSecret:      cfg.AppSecret,
	Token:          cfg.Token,
	EncodingAESKey: cfg.EncodingAESKey,//消息加解密时用到
	Cache:          memcache,
}

微信通知接收


//配置微信参数
config := &wechat.Config{
	AppID:          "xxxx",
	AppSecret:      "xxxx",
	Token:          "xxxx",
	EncodingAESKey: "xxxx",
	Cache:          cache.NewMemory(), // 使用memory保存access_token,也可选择redis或自定义cache
}
wc := wechat.NewWechat(config)

// 传入request和responseWriter
server := wc.GetServer(request, responseWriter)
server.SetMessageHandler(func(msg message.MixMessage) *message.Reply {

	//回复消息:演示回复用户发送的消息
	text := message.NewText(msg.Content)
	return &message.Reply{message.MsgTypeText, text}
})

server.Serve()
server.Send()

和主流框架配合使用

主要是request和responseWriter在不同框架中获取方式可能不一样:

Cache 设置

Cache主要用来保存全局access_token以及js-sdk中的ticket: 默认采用memcache存储。当然也可以直接实现cache/cache.go中的接口

缓存字典

key 备注
qy_access_token_${小程序APPID} 小程序token
authorizer_access_token_${小程序APPID} 代小程序accesstoken
component_access_token_${平台APPID} 代小程序accesstoken
component_verify_ticket_${平台APPID} 第三方平台票据

更多API使用请参考 godoc : https://godoc.org/gitee.com/zhimiao/wechat-sdk

License

Apache License, Version 2.0

Third Party Softwares

This software uses the following third party open source components.
The third party licensors of these components may provide additional license rights,
terms and conditions and/or require certain notices as described below.

Go
1
https://gitee.com/zhimiao/wechat-sdk.git
git@gitee.com:zhimiao/wechat-sdk.git
zhimiao
wechat-sdk
wechat-sdk
master

搜索帮助