TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaFliggyCpsHotelCompareRequest req = new AlibabaFliggyCpsHotelCompareRequest();
AlibabaFliggyCpsHotelCompareRequest.HotelComparePriceRequest obj1 = new AlibabaFliggyCpsHotelCompareRequest.HotelComparePriceRequest();
obj1.setWithQrCode(true);
obj1.setActivityId("test");
obj1.setCheckIn("2023-06-01");
obj1.setShId("xxxxxxx");
obj1.setPromotionPositionId(100000000000L);
obj1.setClient("weixin");
obj1.setFliggyAppKey(10000000L);
obj1.setMaxPrice(50000L);
obj1.setCheckOut("2023-06-02");
obj1.setUserId(123L);
obj1.setSrId("xxxxxyyyy");
req.setHotelComparePriceRequest(obj1);
AlibabaFliggyCpsHotelCompareResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaFliggyCpsHotelCompareRequest req = new AlibabaFliggyCpsHotelCompareRequest();
AlibabaFliggyCpsHotelCompareRequest.HotelComparePriceRequestDomain obj1 = new AlibabaFliggyCpsHotelCompareRequest.HotelComparePriceRequestDomain();
obj1.WithQrCode = true;
obj1.ActivityId = "test";
obj1.CheckIn = "2023-06-01";
obj1.ShId = "xxxxxxx";
obj1.PromotionPositionId = 100000000000L;
obj1.Client = "weixin";
obj1.FliggyAppKey = 10000000L;
obj1.MaxPrice = 50000L;
obj1.CheckOut = "2023-06-02";
obj1.UserId = 123L;
obj1.SrId = "xxxxxyyyy";
req.HotelComparePriceRequest_ = obj1;
AlibabaFliggyCpsHotelCompareResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaFliggyCpsHotelCompareRequest;
$hotel_compare_price_request = new HotelComparePriceRequest;
$hotel_compare_price_request->with_qr_code="true";
$hotel_compare_price_request->activity_id="test";
$hotel_compare_price_request->check_in="2023-06-01";
$hotel_compare_price_request->sh_id="xxxxxxx";
$hotel_compare_price_request->promotion_position_id="100000000000";
$hotel_compare_price_request->client="weixin";
$hotel_compare_price_request->fliggy_app_key="10000000";
$hotel_compare_price_request->max_price="50000";
$hotel_compare_price_request->check_out="2023-06-02";
$hotel_compare_price_request->user_id="123";
$hotel_compare_price_request->sr_id="xxxxxyyyy";
$req->setHotelComparePriceRequest(json_encode($hotel_compare_price_request));
$resp = $c->execute($req);
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=alibaba.fliggy.cps.hotel.compare' \
-d 'partner_id=apidoc' \
-d 'sign=FC56164084B602666D03E484767D5892' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-02+23%3A04%3A56' \
-d 'v=2.0' \
-d 'hotel_compare_price_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaFliggyCpsHotelCompareRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.hotel_compare_price_request="数据结构示例JSON格式"
try:
resp= req.getResponse()
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,"alibaba.fliggy.cps.hotel.compare");
add_param(pRequest,"hotel_compare_price_request","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,NULL);
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',
'REST_URL': 'http://gw.api.taobao.com/router/rest'
});
client.execute('alibaba.fliggy.cps.hotel.compare', {
'hotel_compare_price_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})