-
-
名称 |
类型 |
必须 |
描述 |
$app |
String |
否 |
应用的app_key |
$method |
String |
是 |
API接口名称 |
$sign |
String |
是 |
签名 |
$token |
String |
是 |
采用OAuth授权方式为必填参数 |
$v |
String |
是 |
API协议版本,可选值:1.0.0 |
-
名称 |
类型 |
必须 |
示例值 |
描述 |
outSpuId |
String |
是
|
|
外部产品编码 |
openGoodsSkus |
OpenGoodsSku |
否
|
|
商品信息 |
outId |
String |
否
|
- |
外部商品编码 |
goodName |
String |
否
|
- |
商品名称 |
stock |
Integer |
否
|
- |
库存[1 有货、2 无货] |
sellPrice |
Double |
否
|
- |
价格 |
underlinedPrice |
Double |
否
|
- |
划线价格 |
appUrl |
String |
否
|
- |
app链接 |
h5Url |
String |
否
|
- |
H5链接 |
applets |
AppletsVO[] |
否
|
- |
小程序链接 |
platform |
String |
否
|
- |
平台,如微信、支付宝、百度 |
appId |
String |
否
|
- |
appId |
path |
String |
否
|
- |
路径 |
evaluations |
EvaluationVO[] |
否
|
- |
评价 |
outId |
String |
否
|
- |
外部商品编码 |
score |
String |
否
|
- |
分数 |
content |
String |
否
|
- |
内容 |
evaluationNum |
Integer |
否
|
- |
评价数 |
evaluationRate |
Double |
否
|
- |
好评率[如0.95] |
mainImages |
String[] |
否
|
- |
主图 |
itemProps |
OpenItemProp[] |
否
|
- |
规格参数 |
key |
String |
否
|
- |
key |
values |
String[] |
否
|
- |
value |
groupName |
String |
否
|
- |
模板组 |
sellerItems |
OpenSellerItem[] |
否
|
- |
销售属性 |
key |
String |
否
|
- |
key |
value |
String |
否
|
- |
value |
grossWeight |
Double |
否
|
- |
毛重 |
height |
Integer |
否
|
- |
高 |
length |
Integer |
否
|
- |
长 |
width |
Integer |
否
|
- |
宽 |
barCode |
String |
否
|
- |
条形码 |
goodsTax |
Double |
否
|
- |
税率[如0.13、0.09、0.06、0.03、0.01等] |
-
Java
GmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomePusherGoodsAppendRequest request = new GomePusherGoodsAppendRequest();
//详细参数信息请参考API详情页面。
request.setOutSpuId("");
request.setOpenGoodsSkus();
GomePusherGoodsAppendResponse 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 GomePusherGoodsAppendRequest;
//详细参数信息请参考API详情页面。
$request -> setOutSpuId("");
$request -> setOpenGoodsSkus();
$response = $client -> execute($request);
Net
IGmosClient client = new DefaultGmosClient(url, appKey, secret, token);
GomePusherGoodsAppendRequest request = new GomePusherGoodsAppendRequest();
request.OutSpuId="";
request.OpenGoodsSkus=;
GomePusherGoodsAppendResponse 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 |
令牌已过期 |
-