You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dingdanxia/waimai.meituan_privilege.go

56 lines
2.5 KiB

2 years ago
package dingdanxia
import (
2 years ago
"context"
2 years ago
"encoding/json"
"go.dtapp.net/gorequest"
"net/http"
)
type WaiMaiMeituanPrivilegeResponse struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data struct {
1 year ago
H5 string `json:"h5"` // H5 领券
ShortH5 string `json:"short_h5"` // H5 领券短链接
Deeplink string `json:"deeplink"` // Deeplink领券
H5Evoke string `json:"h5_evoke"` // H5 内唤起页
Qrcode string `json:"qrcode"` // 二维码海报图片路径
Tkl string `json:"tkl"` // 团口令
2 years ago
WeAppInfo struct {
1 year ago
AppId string `json:"app_id"` // 小程序ID
PagePath string `json:"page_path"` // 小程序路径
MiniCode string `json:"miniCode"` // 小程序码
} `json:"we_app_info"` // 小程序信息
2 years ago
} `json:"data"`
}
type WaiMaiMeituanPrivilegeResult struct {
Result WaiMaiMeituanPrivilegeResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
2 years ago
func newWaiMaiMeituanPrivilegeResult(result WaiMaiMeituanPrivilegeResponse, body []byte, http gorequest.Response, err error) *WaiMaiMeituanPrivilegeResult {
2 years ago
return &WaiMaiMeituanPrivilegeResult{Result: result, Body: body, Http: http, Err: err}
}
// WaiMaiMeituanPrivilege 美团外卖CPS推广API接口
// https://www.dingdanxia.com/doc/174/173
1 year ago
func (c *Client) WaiMaiMeituanPrivilege(ctx context.Context, sid string, generateWeApp, channels int, qrcode bool) *WaiMaiMeituanPrivilegeResult {
2 years ago
// 参数
2 years ago
param := gorequest.NewParams()
1 year ago
param.Set("sid", sid) // 渠道方用户唯一标识,渠道可自定义,长度不超过50参数中不能包含dingdanxia用于向用户返佣,支持小写字母和数字的格式,其它字符可能造成无法正常跟单
param.Set("generate_we_app", generateWeApp) // 是否生成小程序推广信息
param.Set("channels", channels) // 推广渠道 1-小程序推广,2-公众号推广,3-app推广,4-社群推广 默认1 ,请务必选择对应渠道推广,选择错误会影响佣金比例
param.Set("qrcode", qrcode) // 二维码图片
2 years ago
params := gorequest.NewParamsWith(param)
2 years ago
// 请求
2 years ago
request, err := c.request(ctx, apiUrl+"/waimai/meituan_privilege", params, http.MethodPost)
2 years ago
// 定义
var response WaiMaiMeituanPrivilegeResponse
err = json.Unmarshal(request.ResponseBody, &response)
2 years ago
return newWaiMaiMeituanPrivilegeResult(response, request.ResponseBody, request, err)
2 years ago
}