京东商城商品修改
This commit is contained in:
11
platformapi/jdshopapi/order.go
Normal file
11
platformapi/jdshopapi/order.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user