package jd import ( "context" "encoding/json" "go.dtapp.net/gorequest" ) type UnionOpenPromotionCommonGetResultResponse struct { JdUnionOpenPromotionCommonGetResponce struct { Code string `json:"code"` GetResult string `json:"getResult"` } `json:"jd_union_open_promotion_common_get_responce"` } type UnionOpenPromotionCommonGetGetResult struct { Code int `json:"code"` Data struct { ClickURL string `json:"clickURL"` JCommand string `json:"jCommand"` } `json:"data"` Message string `json:"message"` RequestId string `json:"requestId"` } type UnionOpenPromotionCommonGetResult struct { Responce UnionOpenPromotionCommonGetResultResponse // 结果 Result UnionOpenPromotionCommonGetGetResult // 结果 Body []byte // 内容 Http gorequest.Response // 请求 Err error // 错误 } func newUnionOpenPromotionCommonGetResult(responce UnionOpenPromotionCommonGetResultResponse, result UnionOpenPromotionCommonGetGetResult, body []byte, http gorequest.Response, err error) *UnionOpenPromotionCommonGetResult { return &UnionOpenPromotionCommonGetResult{Responce: responce, Result: result, Body: body, Http: http, Err: err} } // UnionOpenPromotionCommonGet 网站/APP获取推广链接接口 // https://union.jd.com/openplatform/api/v2?apiName=jd.union.open.promotion.common.get func (c *Client) UnionOpenPromotionCommonGet(ctx context.Context, notMustParams ...Params) *UnionOpenPromotionCommonGetResult { // 参数 params := NewParamsWithType("jd.union.open.promotion.common.get", notMustParams...) // 请求 request, err := c.request(ctx, params) // 定义 var responce UnionOpenPromotionCommonGetResultResponse var result UnionOpenPromotionCommonGetGetResult err = json.Unmarshal(request.ResponseBody, &responce) err = json.Unmarshal([]byte(responce.JdUnionOpenPromotionCommonGetResponce.GetResult), &result) return newUnionOpenPromotionCommonGetResult(responce, result, request.ResponseBody, request, err) }