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

57 lines
2.6 KiB

2 years ago
package dingdanxia
import (
2 years ago
"context"
5 months ago
"go.dtapp.net/gojson"
2 years ago
"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 // 请求
}
5 months ago
func newWaiMaiMeituanPrivilegeResult(result WaiMaiMeituanPrivilegeResponse, body []byte, http gorequest.Response) *WaiMaiMeituanPrivilegeResult {
return &WaiMaiMeituanPrivilegeResult{Result: result, Body: body, Http: http}
2 years ago
}
// WaiMaiMeituanPrivilege 美团外卖CPS推广API接口
// https://www.dingdanxia.com/doc/174/173
5 months ago
func (c *Client) WaiMaiMeituanPrivilege(ctx context.Context, sid string, generateWeApp bool, channels int, qrcode bool, notMustParams ...gorequest.Params) (*WaiMaiMeituanPrivilegeResult, error) {
2 years ago
// 参数
5 months ago
params := gorequest.NewParamsWith(notMustParams...)
params.Set("sid", sid) // 渠道方用户唯一标识,渠道可自定义,长度不超过50参数中不能包含dingdanxia用于向用户返佣,支持小写字母和数字的格式,其它字符可能造成无法正常跟单
params.Set("generate_we_app", generateWeApp) // 是否生成小程序推广信息
params.Set("channels", channels) // 推广渠道 1-小程序推广,2-公众号推广,3-app推广,4-社群推广 默认1 ,请务必选择对应渠道推广,选择错误会影响佣金比例
params.Set("qrcode", qrcode) // 二维码图片
2 years ago
// 请求
2 years ago
request, err := c.request(ctx, apiUrl+"/waimai/meituan_privilege", params, http.MethodPost)
5 months ago
if err != nil {
return newWaiMaiMeituanPrivilegeResult(WaiMaiMeituanPrivilegeResponse{}, request.ResponseBody, request), err
}
2 years ago
// 定义
var response WaiMaiMeituanPrivilegeResponse
5 months ago
err = gojson.Unmarshal(request.ResponseBody, &response)
return newWaiMaiMeituanPrivilegeResult(response, request.ResponseBody, request), err
2 years ago
}