PowerWeChat icon indicating copy to clipboard operation
PowerWeChat copied to clipboard

PowerWechat是一款基于WeChat SDK for Golang,支持小程序、微信支付、企业微信、公众号等全微信生态

Results 5 PowerWeChat issues
Sort by recently updated
recently updated
newest added

## V3支持“超时请求取消机制” V3增加了context,可以通过context来控制timeout超时请求后,强制取消该词业务请求 ``` go // ------ 比如 强制取消获取部门列表接口 ------ ctx,cancel := context.WithTimeout(context.Background(), 1*time.Second) dept,err := wechatWork.Department.List(ctx, id) // ------ PowerLib中的单元测试 ------ func TestDataflow_WithContext(t *testing.T) { df := InitBaseDataflow() ctx,...

documentation

Pls Check https://github.com/ArtisanCloud/PowerWeChat/releases/tag/v3.0.64

https://github.com/ArtisanCloud/PowerWeChat/pull/309 v3.0.32

2023.09.09,微信支付官方更新了API列表,支持查询用户投诉及处理并回复。 详见官方文档: https://pay.weixin.qq.com/docs/merchant/products/consumer-complaint/apilist.html 补充一个微信官方提供了微信支付 APIv3 的go SDK https://github.com/wechatpay-apiv3/wechatpay-go