model

package
v1.1.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 29, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DEFAULT_SIGN_METHOD = MD5
	DEFAULT_API_VERSION = "2.0"
	DEFAULT_API_FORMAT  = JSON
)

Variables

This section is empty.

Functions

func AnyToString

func AnyToString(val interface{}) (string, error)

Types

type APIFormat

type APIFormat = string
const (
	JSON APIFormat = "json"
	XML  APIFormat = "xml"
)

type CommonRequest

type CommonRequest struct {
	Method       string    `json:"method,omitempty"`         // API接口名称
	AppKey       string    `json:"app_key,omitempty"`        // TOP分配给应用的AppKey
	TargetAppKey string    `json:"target_app_key,omitempty"` // 被调用的目标AppKey,仅当被调用的API为第三方ISV提供时有效
	SignMethod   string    `json:"sign_method,omitempty"`    // 签名的摘要算法,可选值为:hmac,md5,hmac-sha256。
	Session      string    `json:"session,omitempty"`        // 用户登录授权成功后,TOP颁发给应用的授权信息,详细介绍请点击这里。当此API的标签上注明:“需要授权”,则此参数必传;“不需要授权”,则此参数不需要传;“可选授权”,则此参数为可选
	Timestamp    string    `json:"timestamp,omitempty"`      // 时间戳,格式为yyyy-MM-dd HH:mm:ss,时区为GMT+8,例如:2015-01-01 12:00:00。淘宝API服务端允许客户端请求最大时间误差为10分钟
	Format       APIFormat `json:"format,omitempty"`         // 响应格式。默认为xml格式,可选值:xml,json。
	V            string    `json:"v,omitempty"`              // API协议版本,可选值:2.0
	PartnerId    string    `json:"partner_id,omitempty"`     // 合作伙伴身份标识
	Simplify     bool      `json:"simplify,omitempty"`       // 是否采用精简JSON返回格式,仅当format=json时有效,默认值为:false
}

func NewCommonRequest

func NewCommonRequest(method string, appKey string) *CommonRequest

func (CommonRequest) GetParams

func (c CommonRequest) GetParams() map[string]string

func (*CommonRequest) SetAPIFormat

func (c *CommonRequest) SetAPIFormat(format APIFormat)

func (*CommonRequest) SetSession

func (c *CommonRequest) SetSession(session string)

func (*CommonRequest) SetSignMethod

func (c *CommonRequest) SetSignMethod(method SignMethod)

type CommonResponse

type CommonResponse struct {
	ErrorResponse *ErrorResponse `json:"error_response,omitempty" xml:"error_response,omitempty"` // 请求访问失败时返回的根节点
}

func (CommonResponse) B043C16EB094F65A787F22E6AE0A10BCB7ABDE6D

func (c CommonResponse) B043C16EB094F65A787F22E6AE0A10BCB7ABDE6D()

func (CommonResponse) Error

func (c CommonResponse) Error() error

func (CommonResponse) IsError

func (c CommonResponse) IsError() bool

type ErrorResponse

type ErrorResponse struct {
	XMLName   xml.Name `xml:"error_response"`
	RequestId string   `json:"request_id,omitempty" xml:"request_id,omitempty"` // 平台颁发的每次请求访问的唯一标识
	Code      int      `json:"code,omitempty" xml:"code,omitempty"`             // 请求失败返回的错误码
	Msg       string   `json:"msg,omitempty" xml:"msg,omitempty"`               // 请求失败返回的错误信息
	SubCode   string   `json:"sub_code,omitempty" xml:"sub_code,omitempty"`     // 请求失败返回的子错误码
	SubMsg    string   `json:"sub_msg,omitempty" xml:"sub_msg,omitempty"`       // 请求失败返回的子错误信息
}

func (ErrorResponse) Error

func (c ErrorResponse) Error() string

type File

type File struct {
	io.Reader
	Name string
}

func (File) MultipartFileName

func (f File) MultipartFileName() string

type IRequest

type IRequest interface {
	GetApiMethodName() string
	GetApiParams() url.Values
	NeedMultipart() bool
	GetRawParams() map[string]*Param
}

type IResponse

type IResponse interface {
	B043C16EB094F65A787F22E6AE0A10BCB7ABDE6D()
	IsError() bool
	Error() error
}

type Param

type Param struct {
	// contains filtered or unexported fields
}

func NewFileParam

func NewFileParam(fd *File) *Param

func NewStringParam

func NewStringParam(str string) *Param

func (Param) File

func (p Param) File() *File

func (Param) IsFile

func (p Param) IsFile() bool

func (Param) String

func (p Param) String() string

type Params

type Params map[string]*Param

func NewParams

func NewParams() Params

func (Params) GetRawParams

func (p Params) GetRawParams() map[string]*Param

func (Params) NeedMultipart

func (p Params) NeedMultipart() bool

func (Params) Set

func (p Params) Set(key string, value interface{}) error

type SignMethod

type SignMethod = string
const (
	MD5  SignMethod = "md5"
	HMAC SignMethod = "hmac"
)

Directories

Path Synopsis
ALIOS广告平台 model https://open.taobao.com/API.htm?docId=37669&docType=2
ALIOS广告平台 model https://open.taobao.com/API.htm?docId=37669&docType=2
Promotion Creatives model https://open.taobao.com/API.htm?docId=45801&docType=2
Promotion Creatives model https://open.taobao.com/API.htm?docId=45801&docType=2
Data Reports model https://open.taobao.com/API.htm?docId=45807&docType=2
Data Reports model https://open.taobao.com/API.htm?docId=45807&docType=2
AE-Dropshipper model https://open.taobao.com/API.htm?docId=39371&docType=2
AE-Dropshipper model https://open.taobao.com/API.htm?docId=39371&docType=2
AE-Oversea-Solution model https://open.taobao.com/API.htm?docId=47378&docType=2
AE-Oversea-Solution model https://open.taobao.com/API.htm?docId=47378&docType=2
AE任务开放平台 model https://open.taobao.com/API.htm?docId=53415&docType=2
AE任务开放平台 model https://open.taobao.com/API.htm?docId=53415&docType=2
Efficient Tools model https://open.taobao.com/API.htm?docId=45804&docType=2
Efficient Tools model https://open.taobao.com/API.htm?docId=45804&docType=2
AE-UserOpen-Recommend model https://open.taobao.com/API.htm?docId=45722&docType=2
AE-UserOpen-Recommend model https://open.taobao.com/API.htm?docId=45722&docType=2
阿里通信API model https://open.taobao.com/API.htm?docId=29701&docType=2
阿里通信API model https://open.taobao.com/API.htm?docId=29701&docType=2
阿里健康处方药平台 model https://open.taobao.com/API.htm?docId=44810&docType=2
阿里健康处方药平台 model https://open.taobao.com/API.htm?docId=44810&docType=2
aliExpress model https://open.taobao.com/API.htm?docId=54728&docType=2
aliExpress model https://open.taobao.com/API.htm?docId=54728&docType=2
全球速卖通 model https://open.taobao.com/API.htm?docId=56229&docType=2
全球速卖通 model https://open.taobao.com/API.htm?docId=56229&docType=2
阿里健康医 model https://open.taobao.com/API.htm?docId=42645&docType=2
阿里健康医 model https://open.taobao.com/API.htm?docId=42645&docType=2
阿里健康算法 model https://open.taobao.com/API.htm?docId=48492&docType=2
阿里健康算法 model https://open.taobao.com/API.htm?docId=48492&docType=2
阿里健康-健康证 model https://open.taobao.com/API.htm?docId=54140&docType=2
阿里健康-健康证 model https://open.taobao.com/API.htm?docId=54140&docType=2
阿里健康-检测检验-预约 model https://open.taobao.com/API.htm?docId=51444&docType=2
阿里健康-检测检验-预约 model https://open.taobao.com/API.htm?docId=51444&docType=2
医知鹿-视频 model https://open.taobao.com/API.htm?docId=46849&docType=2
医知鹿-视频 model https://open.taobao.com/API.htm?docId=46849&docType=2
阿里健康三方机构 model https://open.taobao.com/API.htm?docId=51290&docType=2
阿里健康三方机构 model https://open.taobao.com/API.htm?docId=51290&docType=2
阿里健康医生 model https://open.taobao.com/API.htm?docId=43570&docType=2
阿里健康医生 model https://open.taobao.com/API.htm?docId=43570&docType=2
阿里健康公益线API model https://open.taobao.com/API.htm?docId=56009&docType=2
阿里健康公益线API model https://open.taobao.com/API.htm?docId=56009&docType=2
全域会员通 model https://open.taobao.com/API.htm?docId=46937&docType=2
全域会员通 model https://open.taobao.com/API.htm?docId=46937&docType=2
消息API model https://open.taobao.com/API.htm?docId=56166&docType=2
消息API model https://open.taobao.com/API.htm?docId=56166&docType=2
AliOS支付API model https://open.taobao.com/API.htm?docId=45261&docType=2
AliOS支付API model https://open.taobao.com/API.htm?docId=45261&docType=2
阿里大于API model https://open.taobao.com/API.htm?docId=28647&docType=2
阿里大于API model https://open.taobao.com/API.htm?docId=28647&docType=2
飞猪商业化API model https://open.taobao.com/API.htm?docId=55665&docType=2
飞猪商业化API model https://open.taobao.com/API.htm?docId=55665&docType=2
飞猪-综合交通api model https://open.taobao.com/API.htm?docId=53101&docType=2
飞猪-综合交通api model https://open.taobao.com/API.htm?docId=53101&docType=2
飞猪行政区划API model https://open.taobao.com/API.htm?docId=31375&docType=2
飞猪行政区划API model https://open.taobao.com/API.htm?docId=31375&docType=2
飞猪商家平台 model https://open.taobao.com/API.htm?docId=54748&docType=2
飞猪商家平台 model https://open.taobao.com/API.htm?docId=54748&docType=2
飞猪POI数据API model https://open.taobao.com/API.htm?docId=45315&docType=2
飞猪POI数据API model https://open.taobao.com/API.htm?docId=45315&docType=2
飞猪发票 model https://open.taobao.com/API.htm?docId=51546&docType=2
飞猪发票 model https://open.taobao.com/API.htm?docId=51546&docType=2
阿里云API model https://open.taobao.com/API.htm?docId=24304&docType=2
阿里云API model https://open.taobao.com/API.htm?docId=24304&docType=2
阿里云ocsAPI model https://open.taobao.com/API.htm?docId=24698&docType=2
阿里云ocsAPI model https://open.taobao.com/API.htm?docId=24698&docType=2
本地生活API model https://open.taobao.com/API.htm?docId=57060&docType=2
本地生活API model https://open.taobao.com/API.htm?docId=57060&docType=2
本地生活商户基础API model https://open.taobao.com/API.htm?docId=53173&docType=2
本地生活商户基础API model https://open.taobao.com/API.htm?docId=53173&docType=2
反欺诈风控API model https://open.taobao.com/API.htm?docId=25505&docType=2
反欺诈风控API model https://open.taobao.com/API.htm?docId=25505&docType=2
SCM API model https://open.taobao.com/API.htm?docId=36216&docType=2
SCM API model https://open.taobao.com/API.htm?docId=36216&docType=2
天猫供应 model https://open.taobao.com/API.htm?docId=40826&docType=2
天猫供应 model https://open.taobao.com/API.htm?docId=40826&docType=2
新零售供应链API model https://open.taobao.com/API.htm?docId=54020&docType=2
新零售供应链API model https://open.taobao.com/API.htm?docId=54020&docType=2
AE-供应链 model https://open.taobao.com/API.htm?docId=56317&docType=2
AE-供应链 model https://open.taobao.com/API.htm?docId=56317&docType=2
阿里巴巴供应链平台API model https://open.taobao.com/API.htm?docId=32779&docType=2
阿里巴巴供应链平台API model https://open.taobao.com/API.htm?docId=32779&docType=2
司法拍卖 model https://open.taobao.com/API.htm?docId=40551&docType=2
司法拍卖 model https://open.taobao.com/API.htm?docId=40551&docType=2
阿信-基础数据 model https://open.taobao.com/API.htm?docId=55968&docType=2
阿信-基础数据 model https://open.taobao.com/API.htm?docId=55968&docType=2
阿信-交易API model https://open.taobao.com/API.htm?docId=55695&docType=2
阿信-交易API model https://open.taobao.com/API.htm?docId=55695&docType=2
b2b认证平台api model https://open.taobao.com/API.htm?docId=32288&docType=2
b2b认证平台api model https://open.taobao.com/API.htm?docId=32288&docType=2
百川-ctg model https://open.taobao.com/API.htm?docId=28682&docType=2
百川-ctg model https://open.taobao.com/API.htm?docId=28682&docType=2
保险API model https://open.taobao.com/API.htm?docId=37741&docType=2
保险API model https://open.taobao.com/API.htm?docId=37741&docType=2
淘宝内容API model https://open.taobao.com/API.htm?docId=27196&docType=2
淘宝内容API model https://open.taobao.com/API.htm?docId=27196&docType=2
账务API model https://open.taobao.com/API.htm?docId=21709&docType=2
账务API model https://open.taobao.com/API.htm?docId=21709&docType=2
会员卡 model https://open.taobao.com/API.htm?docId=46278&docType=2
会员卡 model https://open.taobao.com/API.htm?docId=46278&docType=2
品效API model https://open.taobao.com/API.htm?docId=36460&docType=2
品效API model https://open.taobao.com/API.htm?docId=36460&docType=2
商旅API model https://open.taobao.com/API.htm?docId=33169&docType=2
商旅API model https://open.taobao.com/API.htm?docId=33169&docType=2
淘宝C2M model https://open.taobao.com/API.htm?docId=51314&docType=2
淘宝C2M model https://open.taobao.com/API.htm?docId=51314&docType=2
菜鸟末端商业 model https://open.taobao.com/API.htm?docId=46493&docType=2
菜鸟末端商业 model https://open.taobao.com/API.htm?docId=46493&docType=2
菜鸟控制塔API model https://open.taobao.com/API.htm?docId=43854&docType=2
菜鸟控制塔API model https://open.taobao.com/API.htm?docId=43854&docType=2
菜鸟裹裹API model https://open.taobao.com/API.htm?docId=31197&docType=2
菜鸟裹裹API model https://open.taobao.com/API.htm?docId=31197&docType=2
菜鸟农村物流 model https://open.taobao.com/API.htm?docId=27588&docType=2
菜鸟农村物流 model https://open.taobao.com/API.htm?docId=27588&docType=2
彩票API model https://open.taobao.com/API.htm?docId=21828&docType=2
彩票API model https://open.taobao.com/API.htm?docId=21828&docType=2
智慧园区API model https://open.taobao.com/API.htm?docId=32226&docType=2
智慧园区API model https://open.taobao.com/API.htm?docId=32226&docType=2
旅行用车API model https://open.taobao.com/API.htm?docId=44234&docType=2
旅行用车API model https://open.taobao.com/API.htm?docId=44234&docType=2
公益三小时公共 model https://open.taobao.com/API.htm?docId=45562&docType=2
公益三小时公共 model https://open.taobao.com/API.htm?docId=45562&docType=2
淘宝同城API model https://open.taobao.com/API.htm?docId=51645&docType=2
淘宝同城API model https://open.taobao.com/API.htm?docId=51645&docType=2
云游戏API model https://open.taobao.com/API.htm?docId=55012&docType=2
云游戏API model https://open.taobao.com/API.htm?docId=55012&docType=2
菜鸟配送API model https://open.taobao.com/API.htm?docId=25659&docType=2
菜鸟配送API model https://open.taobao.com/API.htm?docId=25659&docType=2
菜鸟发货工作台API model https://open.taobao.com/API.htm?docId=47727&docType=2
菜鸟发货工作台API model https://open.taobao.com/API.htm?docId=47727&docType=2
店铺会员管理API model https://open.taobao.com/API.htm?docId=25584&docType=2
店铺会员管理API model https://open.taobao.com/API.htm?docId=25584&docType=2
淘宝定制行业API model https://open.taobao.com/API.htm?docId=28671&docType=2
淘宝定制行业API model https://open.taobao.com/API.htm?docId=28671&docType=2
大麦API model https://open.taobao.com/API.htm?docId=39475&docType=2
大麦API model https://open.taobao.com/API.htm?docId=39475&docType=2
激励API model https://open.taobao.com/API.htm?docId=38249&docType=2
激励API model https://open.taobao.com/API.htm?docId=38249&docType=2
淘宝卡券平台 model https://open.taobao.com/API.htm?docId=29874&docType=2
淘宝卡券平台 model https://open.taobao.com/API.htm?docId=29874&docType=2
阿里影业灯塔 model https://open.taobao.com/API.htm?docId=50713&docType=2
阿里影业灯塔 model https://open.taobao.com/API.htm?docId=50713&docType=2
DMP API model https://open.taobao.com/API.htm?docId=23625&docType=2
DMP API model https://open.taobao.com/API.htm?docId=23625&docType=2
阿里健康药API model https://open.taobao.com/API.htm?docId=50465&docType=2
阿里健康药API model https://open.taobao.com/API.htm?docId=50465&docType=2
阿里健康追溯码 model https://open.taobao.com/API.htm?docId=40971&docType=2
阿里健康追溯码 model https://open.taobao.com/API.htm?docId=40971&docType=2
数据API model https://open.taobao.com/API.htm?docId=38780&docType=2
数据API model https://open.taobao.com/API.htm?docId=38780&docType=2
海南离岛对外API model https://open.taobao.com/API.htm?docId=56257&docType=2
海南离岛对外API model https://open.taobao.com/API.htm?docId=56257&docType=2
企业订餐购物车API model https://open.taobao.com/API.htm?docId=49011&docType=2
企业订餐购物车API model https://open.taobao.com/API.htm?docId=49011&docType=2
企业订餐优惠券API model https://open.taobao.com/API.htm?docId=49008&docType=2
企业订餐优惠券API model https://open.taobao.com/API.htm?docId=49008&docType=2
企业订餐员工API model https://open.taobao.com/API.htm?docId=48679&docType=2
企业订餐员工API model https://open.taobao.com/API.htm?docId=48679&docType=2
企业订餐订单API model https://open.taobao.com/API.htm?docId=49014&docType=2
企业订餐订单API model https://open.taobao.com/API.htm?docId=49014&docType=2
企业订餐店铺接口 model https://open.taobao.com/API.htm?docId=49167&docType=2
企业订餐店铺接口 model https://open.taobao.com/API.htm?docId=49167&docType=2
生活汇API model https://open.taobao.com/API.htm?docId=26189&docType=2
生活汇API model https://open.taobao.com/API.htm?docId=26189&docType=2
换货API model https://open.taobao.com/API.htm?docId=31202&docType=2
换货API model https://open.taobao.com/API.htm?docId=31202&docType=2
互动吧API model https://open.taobao.com/API.htm?docId=44032&docType=2
互动吧API model https://open.taobao.com/API.htm?docId=44032&docType=2
信息流API model https://open.taobao.com/API.htm?docId=43248&docType=2
信息流API model https://open.taobao.com/API.htm?docId=43248&docType=2
电影票API model https://open.taobao.com/API.htm?docId=45077&docType=2
电影票API model https://open.taobao.com/API.htm?docId=45077&docType=2
影城自运营开放Api model https://open.taobao.com/API.htm?docId=46972&docType=2
影城自运营开放Api model https://open.taobao.com/API.htm?docId=46972&docType=2
资质共享API model https://open.taobao.com/API.htm?docId=42262&docType=2
资质共享API model https://open.taobao.com/API.htm?docId=42262&docType=2
机票API model https://open.taobao.com/API.htm?docId=54268&docType=2
机票API model https://open.taobao.com/API.htm?docId=54268&docType=2
飞猪机票前台类目 model https://open.taobao.com/API.htm?docId=42575&docType=2
飞猪机票前台类目 model https://open.taobao.com/API.htm?docId=42575&docType=2
脚模API model https://open.taobao.com/API.htm?docId=50512&docType=2
脚模API model https://open.taobao.com/API.htm?docId=50512&docType=2
企业运营平台-集团财 model https://open.taobao.com/API.htm?docId=33937&docType=2
企业运营平台-集团财 model https://open.taobao.com/API.htm?docId=33937&docType=2
汇金API model https://open.taobao.com/API.htm?docId=30278&docType=2
汇金API model https://open.taobao.com/API.htm?docId=30278&docType=2
淘宝游戏API model https://open.taobao.com/API.htm?docId=45035&docType=2
淘宝游戏API model https://open.taobao.com/API.htm?docId=45035&docType=2
游戏激励平台API model https://open.taobao.com/API.htm?docId=25396&docType=2
游戏激励平台API model https://open.taobao.com/API.htm?docId=25396&docType=2
国际虚拟API model https://open.taobao.com/API.htm?docId=48538&docType=2
国际虚拟API model https://open.taobao.com/API.htm?docId=48538&docType=2
菜鸟无线API model https://open.taobao.com/API.htm?docId=26056&docType=2
菜鸟无线API model https://open.taobao.com/API.htm?docId=26056&docType=2
阿里健康新零售 model https://open.taobao.com/API.htm?docId=41387&docType=2
阿里健康新零售 model https://open.taobao.com/API.htm?docId=41387&docType=2
HOMEAI model https://open.taobao.com/API.htm?docId=41831&docType=2
HOMEAI model https://open.taobao.com/API.htm?docId=41831&docType=2
酒店导购API model https://open.taobao.com/API.htm?docId=35264&docType=2
酒店导购API model https://open.taobao.com/API.htm?docId=35264&docType=2
飞猪酒店签约中心 model https://open.taobao.com/API.htm?docId=49754&docType=2
飞猪酒店签约中心 model https://open.taobao.com/API.htm?docId=49754&docType=2
飞猪酒店标准库 model https://open.taobao.com/API.htm?docId=44900&docType=2
飞猪酒店标准库 model https://open.taobao.com/API.htm?docId=44900&docType=2
国际站商品API model https://open.taobao.com/API.htm?docId=25348&docType=2
国际站商品API model https://open.taobao.com/API.htm?docId=25348&docType=2
ICBU-信保 model https://open.taobao.com/API.htm?docId=31686&docType=2
ICBU-信保 model https://open.taobao.com/API.htm?docId=31686&docType=2
ICBU-DropShipping model https://open.taobao.com/API.htm?docId=54908&docType=2
ICBU-DropShipping model https://open.taobao.com/API.htm?docId=54908&docType=2
ICBU-物流 model https://open.taobao.com/API.htm?docId=47959&docType=2
ICBU-物流 model https://open.taobao.com/API.htm?docId=47959&docType=2
ICBU商品api model https://open.taobao.com/API.htm?docId=50558&docType=2
ICBU商品api model https://open.taobao.com/API.htm?docId=50558&docType=2
ICBU-RFQ model https://open.taobao.com/API.htm?docId=40805&docType=2
ICBU-RFQ model https://open.taobao.com/API.htm?docId=40805&docType=2
ICBU卖家API model https://open.taobao.com/API.htm?docId=51234&docType=2
ICBU卖家API model https://open.taobao.com/API.htm?docId=51234&docType=2
ICBU-橱 model https://open.taobao.com/API.htm?docId=40964&docType=2
ICBU-橱 model https://open.taobao.com/API.htm?docId=40964&docType=2
闲鱼发布 model https://open.taobao.com/API.htm?docId=39868&docType=2
闲鱼发布 model https://open.taobao.com/API.htm?docId=39868&docType=2
国际机票订单API model https://open.taobao.com/API.htm?docId=27905&docType=2
国际机票订单API model https://open.taobao.com/API.htm?docId=27905&docType=2
天猫互动接口 model https://open.taobao.com/API.htm?docId=25768&docType=2
天猫互动接口 model https://open.taobao.com/API.htm?docId=25768&docType=2
库存API model https://open.taobao.com/API.htm?docId=31754&docType=2
库存API model https://open.taobao.com/API.htm?docId=31754&docType=2
IoT售后解决方案API model https://open.taobao.com/API.htm?docId=50245&docType=2
IoT售后解决方案API model https://open.taobao.com/API.htm?docId=50245&docType=2
国际机票政策API model https://open.taobao.com/API.htm?docId=25494&docType=2
国际机票政策API model https://open.taobao.com/API.htm?docId=25494&docType=2
JAE model https://open.taobao.com/API.htm?docId=30901&docType=2
JAE model https://open.taobao.com/API.htm?docId=30901&docType=2
国内机票订单API model https://open.taobao.com/API.htm?docId=26565&docType=2
国内机票订单API model https://open.taobao.com/API.htm?docId=26565&docType=2
ONS消息服务 model https://open.taobao.com/API.htm?docId=25635&docType=2
ONS消息服务 model https://open.taobao.com/API.htm?docId=25635&docType=2
互动开放API model https://open.taobao.com/API.htm?docId=53888&docType=2
互动开放API model https://open.taobao.com/API.htm?docId=53888&docType=2
聚划算API model https://open.taobao.com/API.htm?docId=28762&docType=2
聚划算API model https://open.taobao.com/API.htm?docId=28762&docType=2
交易猫API model https://open.taobao.com/API.htm?docId=46489&docType=2
交易猫API model https://open.taobao.com/API.htm?docId=46489&docType=2
本地生活内容API model https://open.taobao.com/API.htm?docId=54328&docType=2
本地生活内容API model https://open.taobao.com/API.htm?docId=54328&docType=2
知识库API model https://open.taobao.com/API.htm?docId=38771&docType=2
知识库API model https://open.taobao.com/API.htm?docId=38771&docType=2
口碑综合体API model https://open.taobao.com/API.htm?docId=49834&docType=2
口碑综合体API model https://open.taobao.com/API.htm?docId=49834&docType=2
阿里影业云智API model https://open.taobao.com/API.htm?docId=42042&docType=2
阿里影业云智API model https://open.taobao.com/API.htm?docId=42042&docType=2
司法开放平台 model https://open.taobao.com/API.htm?docId=43036&docType=2
司法开放平台 model https://open.taobao.com/API.htm?docId=43036&docType=2
零售通门店API model https://open.taobao.com/API.htm?docId=43687&docType=2
零售通门店API model https://open.taobao.com/API.htm?docId=43687&docType=2
零售通结算API model https://open.taobao.com/API.htm?docId=46608&docType=2
零售通结算API model https://open.taobao.com/API.htm?docId=46608&docType=2
零售通商品API model https://open.taobao.com/API.htm?docId=47318&docType=2
零售通商品API model https://open.taobao.com/API.htm?docId=47318&docType=2
零售通订单履行 model https://open.taobao.com/API.htm?docId=53484&docType=2
零售通订单履行 model https://open.taobao.com/API.htm?docId=53484&docType=2
零售通履单API model https://open.taobao.com/API.htm?docId=53482&docType=2
零售通履单API model https://open.taobao.com/API.htm?docId=53482&docType=2
零售通营销API model https://open.taobao.com/API.htm?docId=44185&docType=2
零售通营销API model https://open.taobao.com/API.htm?docId=44185&docType=2
零售通智能POS开放 model https://open.taobao.com/API.htm?docId=32945&docType=2
零售通智能POS开放 model https://open.taobao.com/API.htm?docId=32945&docType=2
零售通小店智能设备 model https://open.taobao.com/API.htm?docId=45361&docType=2
零售通小店智能设备 model https://open.taobao.com/API.htm?docId=45361&docType=2
零售通交易API model https://open.taobao.com/API.htm?docId=47800&docType=2
零售通交易API model https://open.taobao.com/API.htm?docId=47800&docType=2
零售通仓储API model https://open.taobao.com/API.htm?docId=53981&docType=2
零售通仓储API model https://open.taobao.com/API.htm?docId=53981&docType=2
大麦票务云分销API model https://open.taobao.com/API.htm?docId=49119&docType=2
大麦票务云分销API model https://open.taobao.com/API.htm?docId=49119&docType=2
云码API model https://open.taobao.com/API.htm?docId=47156&docType=2
云码API model https://open.taobao.com/API.htm?docId=47156&docType=2
阿里健康挂号号源直连 model https://open.taobao.com/API.htm?docId=55216&docType=2
阿里健康挂号号源直连 model https://open.taobao.com/API.htm?docId=55216&docType=2
国际化中台服务域保险 model https://open.taobao.com/API.htm?docId=53335&docType=2
国际化中台服务域保险 model https://open.taobao.com/API.htm?docId=53335&docType=2
商家应用 model https://open.taobao.com/API.htm?docId=46995&docType=2
商家应用 model https://open.taobao.com/API.htm?docId=46995&docType=2
miniapp开放API model https://open.taobao.com/API.htm?docId=51768&docType=2
miniapp开放API model https://open.taobao.com/API.htm?docId=51768&docType=2
优酷播控幻影API model https://open.taobao.com/API.htm?docId=43082&docType=2
优酷播控幻影API model https://open.taobao.com/API.htm?docId=43082&docType=2
喵街API model https://open.taobao.com/API.htm?docId=55338&docType=2
喵街API model https://open.taobao.com/API.htm?docId=55338&docType=2
银泰scm-openapi model https://open.taobao.com/API.htm?docId=41072&docType=2
银泰scm-openapi model https://open.taobao.com/API.htm?docId=41072&docType=2
MOZI账号API model https://open.taobao.com/API.htm?docId=45946&docType=2
MOZI账号API model https://open.taobao.com/API.htm?docId=45946&docType=2
MOZI权限API model https://open.taobao.com/API.htm?docId=45484&docType=2
MOZI权限API model https://open.taobao.com/API.htm?docId=45484&docType=2
MOZI 租户 model https://open.taobao.com/API.htm?docId=51055&docType=2
MOZI 租户 model https://open.taobao.com/API.htm?docId=51055&docType=2
消息amp通道 model https://open.taobao.com/API.htm?docId=50611&docType=2
消息amp通道 model https://open.taobao.com/API.htm?docId=50611&docType=2
手机淘宝API model https://open.taobao.com/API.htm?docId=23431&docType=2
手机淘宝API model https://open.taobao.com/API.htm?docId=23431&docType=2
手淘开放API model https://open.taobao.com/API.htm?docId=26114&docType=2
手淘开放API model https://open.taobao.com/API.htm?docId=26114&docType=2
国际站数据管 model https://open.taobao.com/API.htm?docId=26908&docType=2
国际站数据管 model https://open.taobao.com/API.htm?docId=26908&docType=2
网上法庭对外API model https://open.taobao.com/API.htm?docId=27772&docType=2
网上法庭对外API model https://open.taobao.com/API.htm?docId=27772&docType=2
新零售API model https://open.taobao.com/API.htm?docId=44781&docType=2
新零售API model https://open.taobao.com/API.htm?docId=44781&docType=2
文本算法API model https://open.taobao.com/API.htm?docId=26130&docType=2
文本算法API model https://open.taobao.com/API.htm?docId=26130&docType=2
度假-签证管理API model https://open.taobao.com/API.htm?docId=44453&docType=2
度假-签证管理API model https://open.taobao.com/API.htm?docId=44453&docType=2
新零售开放API model https://open.taobao.com/API.htm?docId=50091&docType=2
新零售开放API model https://open.taobao.com/API.htm?docId=50091&docType=2
新零售POS model https://open.taobao.com/API.htm?docId=42992&docType=2
新零售POS model https://open.taobao.com/API.htm?docId=42992&docType=2
零售终端API model https://open.taobao.com/API.htm?docId=35424&docType=2
零售终端API model https://open.taobao.com/API.htm?docId=35424&docType=2
openimAPI model https://open.taobao.com/API.htm?docId=25766&docType=2
openimAPI model https://open.taobao.com/API.htm?docId=25766&docType=2
OpenMall-API model https://open.taobao.com/API.htm?docId=50836&docType=2
OpenMall-API model https://open.taobao.com/API.htm?docId=50836&docType=2
交易开放 model https://open.taobao.com/API.htm?docId=49615&docType=2
交易开放 model https://open.taobao.com/API.htm?docId=49615&docType=2
桌面API model https://open.taobao.com/API.htm?docId=29910&docType=2
桌面API model https://open.taobao.com/API.htm?docId=29910&docType=2
ott支付 model https://open.taobao.com/API.htm?docId=46647&docType=2
ott支付 model https://open.taobao.com/API.htm?docId=46647&docType=2
跨境API model https://open.taobao.com/API.htm?docId=28703&docType=2
跨境API model https://open.taobao.com/API.htm?docId=28703&docType=2
五棱镜任务API model https://open.taobao.com/API.htm?docId=52767&docType=2
五棱镜任务API model https://open.taobao.com/API.htm?docId=52767&docType=2
同城零售全渠道 model https://open.taobao.com/API.htm?docId=53988&docType=2
同城零售全渠道 model https://open.taobao.com/API.htm?docId=53988&docType=2
信息平台-采购 model https://open.taobao.com/API.htm?docId=38501&docType=2
信息平台-采购 model https://open.taobao.com/API.htm?docId=38501&docType=2
千牛接口 model https://open.taobao.com/API.htm?docId=27244&docType=2
千牛接口 model https://open.taobao.com/API.htm?docId=27244&docType=2
奇门仓储API model https://open.taobao.com/API.htm?docId=29364&docType=2
奇门仓储API model https://open.taobao.com/API.htm?docId=29364&docType=2
质检品控API model https://open.taobao.com/API.htm?docId=10902&docType=2
质检品控API model https://open.taobao.com/API.htm?docId=10902&docType=2
国际火车票API model https://open.taobao.com/API.htm?docId=47364&docType=2
国际火车票API model https://open.taobao.com/API.htm?docId=47364&docType=2
天猫门店API model https://open.taobao.com/API.htm?docId=31454&docType=2
天猫门店API model https://open.taobao.com/API.htm?docId=31454&docType=2
新制造API model https://open.taobao.com/API.htm?docId=39534&docType=2
新制造API model https://open.taobao.com/API.htm?docId=39534&docType=2
国际站外贸直通车API model https://open.taobao.com/API.htm?docId=25200&docType=2
国际站外贸直通车API model https://open.taobao.com/API.htm?docId=25200&docType=2
阿里妈妈广告中心API model https://open.taobao.com/API.htm?docId=47165&docType=2
阿里妈妈广告中心API model https://open.taobao.com/API.htm?docId=47165&docType=2
阿里翻译API model https://open.taobao.com/API.htm?docId=51871&docType=2
阿里翻译API model https://open.taobao.com/API.htm?docId=51871&docType=2
聚安全API model https://open.taobao.com/API.htm?docId=27312&docType=2
聚安全API model https://open.taobao.com/API.htm?docId=27312&docType=2
服务平台API model https://open.taobao.com/API.htm?docId=25687&docType=2
服务平台API model https://open.taobao.com/API.htm?docId=25687&docType=2
神鲸应用API model https://open.taobao.com/API.htm?docId=45850&docType=2
神鲸应用API model https://open.taobao.com/API.htm?docId=45850&docType=2
船票API model https://open.taobao.com/API.htm?docId=48055&docType=2
船票API model https://open.taobao.com/API.htm?docId=48055&docType=2
店铺API model https://open.taobao.com/API.htm?docId=30898&docType=2
店铺API model https://open.taobao.com/API.htm?docId=30898&docType=2
商家营销中心API model https://open.taobao.com/API.htm?docId=31352&docType=2
商家营销中心API model https://open.taobao.com/API.htm?docId=31352&docType=2
智慧门店 model https://open.taobao.com/API.htm?docId=39618&docType=2
智慧门店 model https://open.taobao.com/API.htm?docId=39618&docType=2
商户API model https://open.taobao.com/API.htm?docId=50163&docType=2
商户API model https://open.taobao.com/API.htm?docId=50163&docType=2
子账号管理API model https://open.taobao.com/API.htm?docId=10820&docType=2
子账号管理API model https://open.taobao.com/API.htm?docId=10820&docType=2
平台治理API model https://open.taobao.com/API.htm?docId=32353&docType=2
平台治理API model https://open.taobao.com/API.htm?docId=32353&docType=2
虚拟院线API model https://open.taobao.com/API.htm?docId=35818&docType=2
虚拟院线API model https://open.taobao.com/API.htm?docId=35818&docType=2
业务平台事业部-税务平台API model https://open.taobao.com/API.htm?docId=41740&docType=2
业务平台事业部-税务平台API model https://open.taobao.com/API.htm?docId=41740&docType=2
淘宝客API model https://open.taobao.com/API.htm?docId=48340&docType=2
淘宝客API model https://open.taobao.com/API.htm?docId=48340&docType=2
门票-商品管理API model https://open.taobao.com/API.htm?docId=27945&docType=2
门票-商品管理API model https://open.taobao.com/API.htm?docId=27945&docType=2
天猫校园API model https://open.taobao.com/API.htm?docId=52079&docType=2
天猫校园API model https://open.taobao.com/API.htm?docId=52079&docType=2
tmall-carcenter model https://open.taobao.com/API.htm?docId=31209&docType=2
tmall-carcenter model https://open.taobao.com/API.htm?docId=31209&docType=2
渠道中心API model https://open.taobao.com/API.htm?docId=40706&docType=2
渠道中心API model https://open.taobao.com/API.htm?docId=40706&docType=2
天猫会员积分 model https://open.taobao.com/API.htm?docId=25758&docType=2
天猫会员积分 model https://open.taobao.com/API.htm?docId=25758&docType=2
天猫线下大屏 model https://open.taobao.com/API.htm?docId=39240&docType=2
天猫线下大屏 model https://open.taobao.com/API.htm?docId=39240&docType=2
天猫精灵供应链网关API model https://open.taobao.com/API.htm?docId=53192&docType=2
天猫精灵供应链网关API model https://open.taobao.com/API.htm?docId=53192&docType=2
天猫国际API model https://open.taobao.com/API.htm?docId=51012&docType=2
天猫国际API model https://open.taobao.com/API.htm?docId=51012&docType=2
天猫精品库API model https://open.taobao.com/API.htm?docId=21643&docType=2
天猫精品库API model https://open.taobao.com/API.htm?docId=21643&docType=2
天猫新零售 model https://open.taobao.com/API.htm?docId=55242&docType=2
天猫新零售 model https://open.taobao.com/API.htm?docId=55242&docType=2
天猫服务数据API model https://open.taobao.com/API.htm?docId=53341&docType=2
天猫服务数据API model https://open.taobao.com/API.htm?docId=53341&docType=2
天猫新品平台API model https://open.taobao.com/API.htm?docId=54824&docType=2
天猫新品平台API model https://open.taobao.com/API.htm?docId=54824&docType=2
消息服务API model https://open.taobao.com/API.htm?docId=53697&docType=2
消息服务API model https://open.taobao.com/API.htm?docId=53697&docType=2
天猫新品创新中心API model https://open.taobao.com/API.htm?docId=43329&docType=2
天猫新品创新中心API model https://open.taobao.com/API.htm?docId=43329&docType=2
隐私保护API model https://open.taobao.com/API.htm?docId=54714&docType=2
隐私保护API model https://open.taobao.com/API.htm?docId=54714&docType=2
评价API model https://open.taobao.com/API.htm?docId=48881&docType=2
评价API model https://open.taobao.com/API.htm?docId=48881&docType=2
火车票API model https://open.taobao.com/API.htm?docId=24270&docType=2
火车票API model https://open.taobao.com/API.htm?docId=24270&docType=2
度假&门票-交易管理API model https://open.taobao.com/API.htm?docId=52211&docType=2
度假&门票-交易管理API model https://open.taobao.com/API.htm?docId=52211&docType=2
天天特价 model https://open.taobao.com/API.htm?docId=48644&docType=2
天天特价 model https://open.taobao.com/API.htm?docId=48644&docType=2
酒店团购套餐API model https://open.taobao.com/API.htm?docId=45432&docType=2
酒店团购套餐API model https://open.taobao.com/API.htm?docId=45432&docType=2
1688推客API model https://open.taobao.com/API.htm?docId=27457&docType=2
1688推客API model https://open.taobao.com/API.htm?docId=27457&docType=2
tv支付 model https://open.taobao.com/API.htm?docId=26205&docType=2
tv支付 model https://open.taobao.com/API.htm?docId=26205&docType=2
天猫超市前台API model https://open.taobao.com/API.htm?docId=45441&docType=2
天猫超市前台API model https://open.taobao.com/API.htm?docId=45441&docType=2
业务平台新零售 model https://open.taobao.com/API.htm?docId=41646&docType=2
业务平台新零售 model https://open.taobao.com/API.htm?docId=41646&docType=2
用户API model https://open.taobao.com/API.htm?docId=24938&docType=2
用户API model https://open.taobao.com/API.htm?docId=24938&docType=2
手淘用户增 model https://open.taobao.com/API.htm?docId=43959&docType=2
手淘用户增 model https://open.taobao.com/API.htm?docId=43959&docType=2
用户增长 model https://open.taobao.com/API.htm?docId=43098&docType=2
用户增长 model https://open.taobao.com/API.htm?docId=43098&docType=2
阿里健康-疫苗API model https://open.taobao.com/API.htm?docId=37710&docType=2
阿里健康-疫苗API model https://open.taobao.com/API.htm?docId=37710&docType=2
视觉开放API(viapi) model https://open.taobao.com/API.htm?docId=50726&docType=2
视觉开放API(viapi) model https://open.taobao.com/API.htm?docId=50726&docType=2
电动车API model https://open.taobao.com/API.htm?docId=30434&docType=2
电动车API model https://open.taobao.com/API.htm?docId=30434&docType=2
旺旺API model https://open.taobao.com/API.htm?docId=27589&docType=2
旺旺API model https://open.taobao.com/API.htm?docId=27589&docType=2
电子面单API model https://open.taobao.com/API.htm?docId=27111&docType=2
电子面单API model https://open.taobao.com/API.htm?docId=27111&docType=2
五道口商品API model https://open.taobao.com/API.htm?docId=30648&docType=2
五道口商品API model https://open.taobao.com/API.htm?docId=30648&docType=2
五道口-物流-自提API model https://open.taobao.com/API.htm?docId=47575&docType=2
五道口-物流-自提API model https://open.taobao.com/API.htm?docId=47575&docType=2
数娱媒资输出 model https://open.taobao.com/API.htm?docId=41681&docType=2
数娱媒资输出 model https://open.taobao.com/API.htm?docId=41681&docType=2
亲橙里westcrmAPI model https://open.taobao.com/API.htm?docId=41384&docType=2
亲橙里westcrmAPI model https://open.taobao.com/API.htm?docId=41384&docType=2
菜鸟集货API model https://open.taobao.com/API.htm?docId=45980&docType=2
菜鸟集货API model https://open.taobao.com/API.htm?docId=45980&docType=2
酒店在线预订API model https://open.taobao.com/API.htm?docId=48716&docType=2
酒店在线预订API model https://open.taobao.com/API.htm?docId=48716&docType=2
曲库开放平台艺人API model https://open.taobao.com/API.htm?docId=55125&docType=2
曲库开放平台艺人API model https://open.taobao.com/API.htm?docId=55125&docType=2
曲库开放平台歌曲API model https://open.taobao.com/API.htm?docId=54991&docType=2
曲库开放平台歌曲API model https://open.taobao.com/API.htm?docId=54991&docType=2
虾米开放平台 model https://open.taobao.com/API.htm?docId=36051&docType=2
虾米开放平台 model https://open.taobao.com/API.htm?docId=36051&docType=2
曲库开放平台TraceAPI model https://open.taobao.com/API.htm?docId=51350&docType=2
曲库开放平台TraceAPI model https://open.taobao.com/API.htm?docId=51350&docType=2
优酷网盟 model https://open.taobao.com/API.htm?docId=39065&docType=2
优酷网盟 model https://open.taobao.com/API.htm?docId=39065&docType=2
YunOS model https://open.taobao.com/API.htm?docId=33101&docType=2
YunOS model https://open.taobao.com/API.htm?docId=33101&docType=2
Yunos Account API model https://open.taobao.com/API.htm?docId=27319&docType=2
Yunos Account API model https://open.taobao.com/API.htm?docId=27319&docType=2
YunOS-广告 model https://open.taobao.com/API.htm?docId=29086&docType=2
YunOS-广告 model https://open.taobao.com/API.htm?docId=29086&docType=2
ALiOS应用中心 model https://open.taobao.com/API.htm?docId=35428&docType=2
ALiOS应用中心 model https://open.taobao.com/API.htm?docId=35428&docType=2
小程序API model https://open.taobao.com/API.htm?docId=54992&docType=2
小程序API model https://open.taobao.com/API.htm?docId=54992&docType=2

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL