60 lines
1.9 KiB
Go
60 lines
1.9 KiB
Go
|
package wechat
|
|||
|
|
|||
|
import (
|
|||
|
"context"
|
|||
|
"encoding/json"
|
|||
|
"fmt"
|
|||
|
"net/http"
|
|||
|
|
|||
|
"github.com/go-pay/gopay"
|
|||
|
)
|
|||
|
|
|||
|
// 商圈积分同步
|
|||
|
// Code = 0 is success
|
|||
|
// 商户文档:https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter8_6_2.shtml
|
|||
|
// 服务商文档:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter8_6_2.shtml
|
|||
|
func (c *ClientV3) V3BusinessPointsSync(ctx context.Context, bm gopay.BodyMap) (wxRsp *EmptyRsp, err error) {
|
|||
|
authorization, err := c.authorization(MethodPost, v3BusinessPointsSync, bm)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
res, si, bs, err := c.doProdPost(ctx, bm, v3BusinessPointsSync, authorization)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
wxRsp = &EmptyRsp{Code: Success, SignInfo: si}
|
|||
|
if res.StatusCode != http.StatusNoContent {
|
|||
|
wxRsp.Code = res.StatusCode
|
|||
|
wxRsp.Error = string(bs)
|
|||
|
return wxRsp, nil
|
|||
|
}
|
|||
|
return wxRsp, c.verifySyncSign(si)
|
|||
|
}
|
|||
|
|
|||
|
// 商圈积分授权查询
|
|||
|
// Code = 0 is success
|
|||
|
// 商户文档:https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter8_6_4.shtml
|
|||
|
// 服务商文档:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter8_6_4.shtml
|
|||
|
func (c *ClientV3) V3BusinessAuthPointsQuery(ctx context.Context, appid, openid string) (*BusinessAuthPointsQueryRsp, error) {
|
|||
|
uri := fmt.Sprintf(v3BusinessAuthPointsQuery, openid) + "?appid=" + appid
|
|||
|
authorization, err := c.authorization(MethodGet, uri, nil)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
res, si, bs, err := c.doProdGet(ctx, uri, authorization)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
wxRsp := &BusinessAuthPointsQueryRsp{Code: Success, SignInfo: si}
|
|||
|
wxRsp.Response = new(BusinessAuthPointsQuery)
|
|||
|
if err = json.Unmarshal(bs, wxRsp.Response); err != nil {
|
|||
|
return nil, fmt.Errorf("[%w]: %v, bytes: %s", gopay.UnmarshalErr, err, string(bs))
|
|||
|
}
|
|||
|
if res.StatusCode != http.StatusOK {
|
|||
|
wxRsp.Code = res.StatusCode
|
|||
|
wxRsp.Error = string(bs)
|
|||
|
return wxRsp, nil
|
|||
|
}
|
|||
|
return wxRsp, c.verifySyncSign(si)
|
|||
|
}
|