1) 当当接口参数以及返回值详细信息,请参考:http://open.dangdang.com/index.php?c=documentCenterG3&f=show&page_id=91
2) 必须提供app_key,app_secet,session(token),version(api版本号)四个参数构造sdkClient对象,调用excute方法发请求
3) 点开您想调用的接口详情页面,如:dangdang.item.add (http://open.dangdang.com/index.php?c=documentCenterG4&f=show&page_id=97)
4) 调用示例请参考example
String appKey = "你的appKey"; |
//获取订单列表
SdkClient sdkClient=new SdkClient(appKey,appSecret,session,version);
OrdersListGetRequest request=new OrdersListGetRequest();
OrderListGet orderListGet=new OrderListGet();
orderListGet.setOs("300");
request.setOrderListGet(orderListGet);
try {
OrdersListGetResponse
result=sdkClient.excute(request);
System.out.println("ok:"
+ result.toString());//打印所有返回信息,包括http请求头,请求url,请求参数,请求响应
} catch (ApiException e) {
System.out.println("exp:"
+ e.getErrMsg());
}
错误码 |
错误信息 |
4000 |
missing required arguments |
4001 |
invalid arguments |
5000 |
param error |
6000 |
format error |
7000 |
api response null |
Copyright © 当当网 2004-2012, All Rights Reserved