TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSecurityJaqAppRiskScanbatchRequest req = new AlibabaSecurityJaqAppRiskScanbatchRequest();
AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatch obj1 = new AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatch();
obj1.setAppOsType(1L);
obj1.setCallbackUrl("http://my.callback");
obj1.setDataType(3L);
List<AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItem> list3 = new ArrayList<AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItem>();
AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItem obj4 = new AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItem();
list3.add(obj4);
obj4.setData("b957a597266f4e1f953bbc1b23fbccf7");
obj4.setMd5("b957a597266f4e1f953bbc1b23fbccf7");
obj4.setSize(10213L);
obj1.setScanInfos(list3);
req.setAppInfo(obj1);
req.setScanTypes("malware");
AlibabaSecurityJaqAppRiskScanbatchResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaSecurityJaqAppRiskScanbatchRequest req = new AlibabaSecurityJaqAppRiskScanbatchRequest();
AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchDomain obj1 = new AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchDomain();
obj1.AppOsType = 1L;
obj1.CallbackUrl = "http://my.callback";
obj1.DataType = 3L;
List<AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItemDomain> list3 = new List<AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItemDomain>();
AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItemDomain obj4 = new AlibabaSecurityJaqAppRiskScanbatchRequest.AppInfoBatchItemDomain();
list3.Add(obj4);
obj4.Data = "b957a597266f4e1f953bbc1b23fbccf7";
obj4.Md5 = "b957a597266f4e1f953bbc1b23fbccf7";
obj4.Size = 10213L;
obj1.ScanInfos= list3;
req.AppInfo_ = obj1;
req.ScanTypes = "malware";
AlibabaSecurityJaqAppRiskScanbatchResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaSecurityJaqAppRiskScanbatchRequest;
$app_info = new AppInfoBatch;
$app_info->app_os_type="1";
$app_info->callback_url="http://my.callback";
$app_info->data_type="3";
$scan_infos = new AppInfoBatchItem;
$scan_infos->data="b957a597266f4e1f953bbc1b23fbccf7";
$scan_infos->md5="b957a597266f4e1f953bbc1b23fbccf7";
$scan_infos->size="10213";
$app_info->scan_infos = $scan_infos;
$req->setAppInfo(json_encode($app_info));
$req->setScanTypes("malware");
$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.security.jaq.app.risk.scanbatch' \
-d 'partner_id=apidoc' \
-d 'sign=2C0DAAD8ED57742DF3D7C5EBB105BA47' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-03+21%3A48%3A32' \
-d 'v=2.0' \
-d 'app_info=null' \
-d 'scan_types=malware'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaSecurityJaqAppRiskScanbatchRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.app_info=""
req.scan_types="malware"
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.security.jaq.app.risk.scanbatch");
add_param(pRequest,"app_info","数据结构JSON示例");
add_param(pRequest,"scan_types","malware");
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.security.jaq.app.risk.scanbatch', {
'app_info':'数据结构JSON示例',
'scan_types':'malware'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})