京东商城商品修改

This commit is contained in:
苏尹岚
2020-05-26 10:48:37 +08:00
parent 2cf9d698fd
commit 697fda029e
4 changed files with 47 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
package jdshopapi
//查询单个订单
//https://open.jd.com/home/home#/doc/api?apiCateId=55&apiId=2389&apiName=jingdong.pop.order.enGet
func (a *API) EnGet(orderID int64) (err error) {
_, err = a.AccessAPI("jingdong.pop.order.enGet", prodURL, map[string]interface{}{
"order_id": orderID,
"optional_fields": "ALL",
})
return err
}