TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlscWaimaiFoodchannelShoplistGetRequest req = new AlibabaAlscWaimaiFoodchannelShoplistGetRequest();
AlibabaAlscWaimaiFoodchannelShoplistGetRequest.FoodChannelHomePageRequest obj1 = new AlibabaAlscWaimaiFoodchannelShoplistGetRequest.FoodChannelHomePageRequest();
obj1.setActivityId(11968859L);
obj1.setLimit(20L);
obj1.setLongitude("121.31636");
obj1.setOffset(0L);
obj1.setSupportTemplateCodes("cell_smart_sepecial_dish");
obj1.setLatitude("31.238825");
obj1.setActivityTabId(383083L);
obj1.setContentMarkInfo("{}");
obj1.setUserAgent("xxx");
req.setFoodChannelHomePageRequest(obj1);
AlibabaAlscWaimaiFoodchannelShoplistGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaAlscWaimaiFoodchannelShoplistGetRequest req = new AlibabaAlscWaimaiFoodchannelShoplistGetRequest();
AlibabaAlscWaimaiFoodchannelShoplistGetRequest.FoodChannelHomePageRequestDomain obj1 = new AlibabaAlscWaimaiFoodchannelShoplistGetRequest.FoodChannelHomePageRequestDomain();
obj1.ActivityId = 11968859L;
obj1.Limit = 20L;
obj1.Longitude = "121.31636";
obj1.Offset = 0L;
obj1.SupportTemplateCodes = "cell_smart_sepecial_dish";
obj1.Latitude = "31.238825";
obj1.ActivityTabId = 383083L;
obj1.ContentMarkInfo = "{}";
obj1.UserAgent = "xxx";
req.FoodChannelHomePageRequest_ = obj1;
AlibabaAlscWaimaiFoodchannelShoplistGetResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaAlscWaimaiFoodchannelShoplistGetRequest;
$food_channel_home_page_request = new FoodChannelHomePageRequest;
$food_channel_home_page_request->activity_id="11968859";
$food_channel_home_page_request->limit="20";
$food_channel_home_page_request->longitude="121.31636";
$food_channel_home_page_request->offset="0";
$food_channel_home_page_request->support_template_codes="cell_smart_sepecial_dish";
$food_channel_home_page_request->latitude="31.238825";
$food_channel_home_page_request->activity_tab_id="383083";
$food_channel_home_page_request->content_mark_info="{}";
$food_channel_home_page_request->user_agent="xxx";
$req->setFoodChannelHomePageRequest(json_encode($food_channel_home_page_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.alsc.waimai.foodchannel.shoplist.get' \
-d 'partner_id=apidoc' \
-d 'sign=3A93837ADC683837045103D5E83E8DEE' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-05+19%3A37%3A16' \
-d 'v=2.0' \
-d 'food_channel_home_page_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaAlscWaimaiFoodchannelShoplistGetRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.food_channel_home_page_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.alsc.waimai.foodchannel.shoplist.get");
add_param(pRequest,"food_channel_home_page_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.alsc.waimai.foodchannel.shoplist.get', {
'food_channel_home_page_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})