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.
taobao/tbk.shop.recommend.get.go

47 lines
1.5 KiB

package taobao
import (
"context"
"encoding/json"
"go.dtapp.net/gorequest"
)
type TbkShopRecommendGetResponse struct {
TbkShopRecommendGetResponse struct {
Results struct {
NTbkShop []struct {
UserId int `json:"user_id"`
ShopTitle string `json:"shop_title"`
ShopType string `json:"shop_type"`
SellerNick string `json:"seller_nick"`
PictUrl string `json:"pict_url"`
ShopUrl string `json:"shop_url"`
} `json:"n_tbk_shop"`
} `json:"results"`
} `json:"tbk_shop_recommend_get_response"`
}
type TbkShopRecommendGetResult struct {
Result TbkShopRecommendGetResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newTbkShopRecommendGetResult(result TbkShopRecommendGetResponse, body []byte, http gorequest.Response, err error) *TbkShopRecommendGetResult {
return &TbkShopRecommendGetResult{Result: result, Body: body, Http: http, Err: err}
}
// TbkShopRecommendGet 淘宝客-公用-店铺关联推荐
// https://open.taobao.com/api.htm?docId=24522&docType=2
func (c *Client) TbkShopRecommendGet(ctx context.Context, notMustParams ...Params) *TbkShopRecommendGetResult {
// 参数
params := NewParamsWithType("taobao.tbk.shop.recommend.get", notMustParams...)
// 请求
request, err := c.request(ctx, params)
// 定义
var response TbkShopRecommendGetResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newTbkShopRecommendGetResult(response, request.ResponseBody, request, err)
}