-
-
名称 |
类型 |
必须 |
描述 |
$app |
String |
否 |
应用的app_key |
$method |
String |
是 |
API接口名称 |
$sign |
String |
是 |
签名 |
$token |
String |
是 |
采用OAuth授权方式为必填参数 |
$v |
String |
是 |
API协议版本,可选值:1.0.0 |
-
名称 |
类型 |
必须 |
示例值 |
描述 |
productId |
String |
是
|
A0000016934 |
产品ID |
skus |
String |
是
|
|
情况一:如果templateId输入的是0,1,2,3,goods还是按照原来的要求来填写如:outId~P901,color~红色,sell_price~99,goods_version~3.5,goods_tax~0.13,stock~100,tmp_bar_code~131313,image~http://www.cdntaobao.com/1.jpg||http://www.cdntaobao.com/2.jpg,pros~cpjtSpec_property_3=大卡||cpjtSpec_property_2=2*2cm;outId~P902,color~蓝色,sell_price~876,goods_version~2.5,stock~200,tmp_bar_code~231511,image~http://www.cdntaobao.com/3.jpg||http://www.cdntaobao.com/4.jpg,pros~T31_58=8-40个||S8_85=30升及以上。 情况二:如果templateId输入的是4,即销售属性,需要按照下面规范来填写:outId~bht220,goodsProp~c80c62c4448d:H||8ac55c9d2cf8:蓝色,sell_price~100,goods_tax~0.13,stock~100,image~http://img3.gomeprelive.net.cn/image/bbcimg/production_image/nimg/201604/28/17/18/332369474a5918844b_800.jpg||http://img3.gomeprelive.net.cn/image/bbcimg/production_image/nimg/201604/28/17/18/332369474a5918844b_800.jpg||http://img3.gomeprelive.net.cn/image/bbcimg/production_image/nimg/201604/28/17/18/332369474a5918844b_800.jpg||http://img3.gomeprelive.net.cn/image/bbcimg/production_image/nimg/201604/28/17/18/332369474a5918844b_800.jpg||http://img3.gomeprelive.net.cn/image/bbcimg/production_image/nimg/201604/28/17/18/332369474a5918844b_800.jpg; 其中goodsProp为销售属性标识,c80c62c4448d:H分别为销售属性id和值,对于多个id和值的情况,用||分开。 |
-
Java
GmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomeGoodsSkuAddRequest request = new GomeGoodsSkuAddRequest();
//详细参数信息请参考API详情页面。
request.setProductId("A0000016934");
request.setSkus("");
GomeGoodsSkuAddResponse response = client.execute(request);
System.out.println(response.getBody());
PHP
require_once('GmosSdk.php');
$client = new GmosClient;
$client -> appkey = "";
$client -> secretKey = "";
$client -> session = "";
$client -> gatewayUrl = "";
$request = new GomeGoodsSkuAddRequest;
//详细参数信息请参考API详情页面。
$request -> setProductId("A0000016934");
$request -> setSkus("");
$response = $client -> execute($request);
Net
IGmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomeGoodsSkuAddRequest request = new GomeGoodsSkuAddRequest();
request.ProductId="A0000016934";
request.Skus="";
GomeGoodsSkuAddResponse response = client.Execute(request);
-
注:名称栏的缩进表示类型的关联,单击可以隐藏当前类型包含的字段
-
JSON
-
-
错误码 |
错误消息 |
10001 |
系统错误 |
10002 |
方法调用次数超限 |
10003 |
当前版本的方法不存在,请检查 |
10004 |
缺少版本参数,请指定服务方法的版本号 |
10005 |
该应用在当前IP下禁止访问 |
8224 |
缺少签名参数,请添加签名请求参数 |
8999 |
存在重复的请求,请在90秒之后再请求第二次 |
8225 |
签名无效,请按正确的算法对请求数据进行签名 |
9000 |
字段%s不能为空 |
8249 |
超过上传限制 |
8223 |
无效的appKey,请使用合法的appKey(由服务提供商授予你) |
8239 |
需要传递accessToken参数 |
8222 |
缺少appKey,请向服务端获取合法的appKey |
20001 |
令牌已过期 |
-