产品详情
API参数 barcode 调用地址: http,https://barcode.api.bdymkt.com/barcode 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- code
- string
- true
- 条形码
- 6938166920785
<dependency>
<groupId>com.baidubce</groupId>
<artifactId>api-explorer-sdk</artifactId>
<version>1.0.0</version>
</dependency>
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;
// 商品条码查询 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "http://gwgp-gwa3gakccg2.n.barcode.bdcloudapi.com/barcode";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
request.addQueryParameter("code", "");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"showapi_res_code": 0,
"showapi_res_error": "",
"showapi_res_body": {
"flag": "true",
"remark": "查询成功!",
"code": "6938166920785", //条形码
"goodsName": "苹果醋",//商品名称
"manuName": "新乡市和丝露饮品有限公司", //厂商
"spec": "268ml", //规格
"price": "3.00", //参考价格(单位:元)
"trademark": "醋美人生", //商标/品牌名称
"img": "http://app2.showapi.com/img/barCode_img/2f7e639b-aa2f-4248-ae79-f0acc6ea56e6.jpg", //图片地址
"ret_code": "0",
"goodsType": "食品、饮料和烟草>>饮料", //商品分类
"ycg": "中国", //原产地(可能无此参数信息)
"engName": "cumeirensheng", //
"note": "" //备注信息
}
}
失败返回示例 {
"showapi_res_error": "",
"showapi_res_code": 0,
"showapi_res_id": "5fc862f58d57baa548089975",
"showapi_res_body": {
"ret_code": -1,
"remark": "无效条形码",
"showapi_fee_code": -1
}
}
错误码定义
