TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalStandpointStandpointQueryallRequest req = new AlibabaLegalStandpointStandpointQueryallRequest();
req.setInputSystemCode("Vmock");
AlibabaLegalStandpointStandpointQueryallRequest.QueryParam obj1 = new AlibabaLegalStandpointStandpointQueryallRequest.QueryParam();
obj1.setRollFlag("up");
obj1.setBusiId("0");
obj1.setSceneId(156L);
obj1.setStandpointId(15194L);
obj1.setKeyword("测试");
obj1.setOperateWorkNo("000000");
obj1.setInputSystemCode("Vmock");
req.setQueryParam(obj1);
AlibabaLegalStandpointStandpointQueryallResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaLegalStandpointStandpointQueryallRequest req = new AlibabaLegalStandpointStandpointQueryallRequest();
req.InputSystemCode = "Vmock";
AlibabaLegalStandpointStandpointQueryallRequest.QueryParamDomain obj1 = new AlibabaLegalStandpointStandpointQueryallRequest.QueryParamDomain();
obj1.RollFlag = "up";
obj1.BusiId = "0";
obj1.SceneId = 156L;
obj1.StandpointId = 15194L;
obj1.Keyword = "测试";
obj1.OperateWorkNo = "000000";
obj1.InputSystemCode = "Vmock";
req.QueryParam_ = obj1;
AlibabaLegalStandpointStandpointQueryallResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaLegalStandpointStandpointQueryallRequest;
$req->setInputSystemCode("Vmock");
$query_param = new QueryParam;
$query_param->roll_flag="up";
$query_param->busi_id="0";
$query_param->scene_id="156";
$query_param->standpoint_id="15194";
$query_param->keyword="测试";
$query_param->operate_work_no="000000";
$query_param->input_system_code="Vmock";
$req->setQueryParam(json_encode($query_param));
$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.legal.standpoint.standpoint.queryall' \
-d 'partner_id=apidoc' \
-d 'sign=B6A28CD43EC2A819A3F66EC08236AD16' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-27+02%3A29%3A20' \
-d 'v=2.0' \
-d 'input_system_code=Vmock' \
-d 'query_param=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaLegalStandpointStandpointQueryallRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.input_system_code="Vmock"
req.query_param="数据结构示例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.legal.standpoint.standpoint.queryall");
add_param(pRequest,"input_system_code","Vmock");
add_param(pRequest,"query_param","数据结构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.legal.standpoint.standpoint.queryall', {
'input_system_code':'Vmock',
'query_param':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})