20 lines
403 B
Markdown
20 lines
403 B
Markdown
|
# 微信小程序
|
||
|
|
||
|
[官方文档](https://developers.weixin.qq.com/miniprogram/dev/framework/)
|
||
|
|
||
|
|
||
|
## 包说明
|
||
|
- analysis 数据分析相关API
|
||
|
|
||
|
## 快速入门
|
||
|
```go
|
||
|
wc := wechat.NewWechat()
|
||
|
memory := cache.NewMemory()
|
||
|
cfg := &miniConfig.Config{
|
||
|
AppID: "xxx",
|
||
|
AppSecret: "xxx",
|
||
|
Cache: memory,
|
||
|
}
|
||
|
miniprogram := wc.GetMiniProgram(cfg)
|
||
|
miniprogram.GetAnalysis().GetAnalysisDailyRetain()
|
||
|
```
|