hotime/vendor/github.com/silenceper/wechat/v2/miniprogram/tcb
2022-05-24 13:49:25 +08:00
..
cloudfunction.go 增加vendor 2022-05-24 13:49:25 +08:00
database.go 增加vendor 2022-05-24 13:49:25 +08:00
file.go 增加vendor 2022-05-24 13:49:25 +08:00
README.md 增加vendor 2022-05-24 13:49:25 +08:00
tcb.go 增加vendor 2022-05-24 13:49:25 +08:00

小程序-云开发 SDK

Tencent Cloud Base 文档

使用说明

初始化配置

//使用memcache保存access_token也可选择redis或自定义cache
memCache=cache.NewMemcache("127.0.0.1:11211")

//配置小程序参数
config := &wechat.Config{
    AppID:     "your app id",
    AppSecret: "your app secret",
    Cache:     memCache,
}
wc := wechat.NewWechat(config)
wcTcb := wc.GetTcb()

举例

触发云函数

res, err := wcTcb.InvokeCloudFunction("test-xxxx", "add", `{"a":1,"b":2}`)
if err != nil {
    panic(err)
}

更多使用方法参考PKG.DEV