TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelBnbpriceRelationRequest req = new XhotelBnbpriceRelationRequest();
XhotelBnbpriceRelationRequest.PriceCycleLimitParamr obj1 = new XhotelBnbpriceRelationRequest.PriceCycleLimitParamr();
obj1.setHid(1L);
obj1.setTag(1L);
req.setPriceCycleLimitParamList(obj1);
XhotelBnbpriceRelationResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
XhotelBnbpriceRelationRequest req = new XhotelBnbpriceRelationRequest();
XhotelBnbpriceRelationRequest.PriceCycleLimitParamrDomain obj1 = new XhotelBnbpriceRelationRequest.PriceCycleLimitParamrDomain();
obj1.Hid = 1L;
obj1.Tag = 1L;
req.PriceCycleLimitParamList_ = obj1;
XhotelBnbpriceRelationResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new XhotelBnbpriceRelationRequest;
$price_cycle_limit_param_list = new PriceCycleLimitParamr;
$price_cycle_limit_param_list->hid="1";
$price_cycle_limit_param_list->tag="1";
$req->setPriceCycleLimitParamList(json_encode($price_cycle_limit_param_list));
$resp = $c->execute($req, $sessionKey);
curl -X POST 'http://gw.api.taobao.com/router/rest' \
-H 'Content-Type:application/x-www-form-urlencoded;charset=utf-8' \
-d 'app_key=12129701' \
-d 'format=json' \
-d 'method=taobao.xhotel.bnbprice.relation' \
-d 'partner_id=apidoc' \
-d 'session=f078cec5-fa34-4c1e-b457-f27b0225cf66' \
-d 'sign=15C7554AFDB5D928493265E6F0DDE5BF' \
-d 'sign_method=hmac' \
-d 'timestamp=2026-04-14+20%3A28%3A56' \
-d 'v=2.0' \
-d 'price_cycle_limit_param_list=%7B%7D'
# -*- coding: utf-8 -*-
import top.api
req=top.api.XhotelBnbpriceRelationRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.price_cycle_limit_param_list="{}"
try:
resp= req.getResponse(sessionkey)
print(resp)
except Exception,e:
print(e)
pTopRequest pRequest = alloc_top_request();
pTopResponse pResponse = NULL;
pTaobaoClient pClient = alloc_taobao_client(url, appkey, appsecret);
set_api_name(pRequest,"taobao.xhotel.bnbprice.relation");
add_param(pRequest,"price_cycle_limit_param_list","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,sessionKey);
printf("ret code:%d\n",pResponse->code);
if(pResponse->code == 0){
pTopResponseIterator ite = init_response_iterator(pResponse);
pResultItem pResultItem = alloc_result_item();
while(parseNext(ite, pResultItem) == 0){
printf("%s:%s\n",pResultItem->key,pResultItem->value);
}
destroy_response_iterator(ite);
destroy_result_item(pResultItem);
}
destroy_top_request(pRequest);
destroy_top_response(pResponse);
destroy_taobao_client(pClient);
TopClient = require('./topClient').TopClient;
var client = new TopClient({
'appkey': 'appkey',
'appsecret': 'secret',
'url': 'http://gw.api.taobao.com/router/rest'
});
client.execute('taobao.xhotel.bnbprice.relation', {
'price_cycle_limit_param_list':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})