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.tpwd.create.go

42 lines
1.3 KiB

package taobao
import (
"context"
"encoding/json"
"go.dtapp.net/gorequest"
)
type TbkTPwdCreateResponse struct {
TbkTpwdCreateResponse struct {
Data struct {
Model string `json:"model"`
PasswordSimple string `json:"password_simple"`
} `json:"data"`
RequestId string `json:"request_id"`
} `json:"tbk_tpwd_create_response"`
}
type TbkTPwdCreateResult struct {
Result TbkTPwdCreateResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newTbkTPwdCreateResult(result TbkTPwdCreateResponse, body []byte, http gorequest.Response, err error) *TbkTPwdCreateResult {
return &TbkTPwdCreateResult{Result: result, Body: body, Http: http, Err: err}
}
// TbkTPwdCreate 淘宝客-公用-淘口令生成
// https://open.taobao.com/api.htm?docId=31127&docType=2&source=search
func (c *Client) TbkTPwdCreate(ctx context.Context, notMustParams ...Params) *TbkTPwdCreateResult {
// 参数
params := NewParamsWithType("taobao.tbk.tpwd.create", notMustParams...)
// 请求
request, err := c.request(ctx, params)
// 定义
var response TbkTPwdCreateResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newTbkTPwdCreateResult(response, request.ResponseBody, request, err)
}