TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSecurityJaqRpStartRequest req = new AlibabaSecurityJaqRpStartRequest();
req.setVerifyToken("8fcfd86ebc4a47adbea10245a26277c2");
AlibabaSecurityJaqRpStartRequest.RpClientInfo obj1 = new AlibabaSecurityJaqRpStartRequest.RpClientInfo();
obj1.setOsVersion("5.0.1");
obj1.setTotalMemory("120");
obj1.setAvailableMemory("11");
obj1.setUmidToken("324sad");
obj1.setWuaToken("12abasf12e");
obj1.setIp("1.11.2.23");
obj1.setTimestampInfo("124124");
obj1.setMobileModel("4.1");
obj1.setWua("{'key':'value'}");
obj1.setAppName("MoneyShield");
obj1.setLivenessSdkName("11");
obj1.setExtendMap("{}");
obj1.setRpSdkName("xxx");
obj1.setAppVersion("1.0.0");
obj1.setSessionId("2341");
obj1.setManufacturer("a");
obj1.setCpuArch("xxx");
obj1.setRpSdkVersion("1.0");
obj1.setLivenessSdkVersion("1.1");
obj1.setOsName("ios");
obj1.setDeviceId("1.02");
obj1.setAppKeyInfo("12ssaf");
obj1.setClientType("pc");
req.setClientInfo(obj1);
req.setExtraDataString("{'a':'a'}");
AlibabaSecurityJaqRpStartResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaSecurityJaqRpStartRequest req = new AlibabaSecurityJaqRpStartRequest();
req.VerifyToken = "8fcfd86ebc4a47adbea10245a26277c2";
AlibabaSecurityJaqRpStartRequest.RpClientInfoDomain obj1 = new AlibabaSecurityJaqRpStartRequest.RpClientInfoDomain();
obj1.OsVersion = "5.0.1";
obj1.TotalMemory = "120";
obj1.AvailableMemory = "11";
obj1.UmidToken = "324sad";
obj1.WuaToken = "12abasf12e";
obj1.Ip = "1.11.2.23";
obj1.TimestampInfo = "124124";
obj1.MobileModel = "4.1";
obj1.Wua = "{'key':'value'}";
obj1.AppName = "MoneyShield";
obj1.LivenessSdkName = "11";
obj1.ExtendMap = "{}";
obj1.RpSdkName = "xxx";
obj1.AppVersion = "1.0.0";
obj1.SessionId = "2341";
obj1.Manufacturer = "a";
obj1.CpuArch = "xxx";
obj1.RpSdkVersion = "1.0";
obj1.LivenessSdkVersion = "1.1";
obj1.OsName = "ios";
obj1.DeviceId = "1.02";
obj1.AppKeyInfo = "12ssaf";
obj1.ClientType = "pc";
req.ClientInfo_ = obj1;
req.ExtraData = "{'a':'a'}";
AlibabaSecurityJaqRpStartResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaSecurityJaqRpStartRequest;
$req->setVerifyToken("8fcfd86ebc4a47adbea10245a26277c2");
$client_info = new RpClientInfo;
$client_info->os_version="5.0.1";
$client_info->total_memory="120";
$client_info->available_memory="11";
$client_info->umid_token="324sad";
$client_info->wua_token="12abasf12e";
$client_info->ip="1.11.2.23";
$client_info->timestamp_info="124124";
$client_info->mobile_model="4.1";
$client_info->wua="{'key':'value'}";
$client_info->app_name="MoneyShield";
$client_info->liveness_sdk_name="11";
$client_info->extend_map="{}";
$client_info->rp_sdk_name="xxx";
$client_info->app_version="1.0.0";
$client_info->session_id="2341";
$client_info->manufacturer="a";
$client_info->cpu_arch="xxx";
$client_info->rp_sdk_version="1.0";
$client_info->liveness_sdk_version="1.1";
$client_info->os_name="ios";
$client_info->device_id="1.02";
$client_info->app_key_info="12ssaf";
$client_info->client_type="pc";
$req->setClientInfo(json_encode($client_info));
$req->setExtraData("{'a':'a'}");
$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.rp.start' \
-d 'partner_id=apidoc' \
-d 'sign=2BD7CAD2F10FDA7DD6F9991E7F7CEF90' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-03+21%3A29%3A06' \
-d 'v=2.0' \
-d 'client_info=null' \
-d 'extra_data=%7B%27a%27%3A%27a%27%7D' \
-d 'verify_token=8fcfd86ebc4a47adbea10245a26277c2'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaSecurityJaqRpStartRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.verify_token="8fcfd86ebc4a47adbea10245a26277c2"
req.client_info=""
req.extra_data="{'a':'a'}"
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.rp.start");
add_param(pRequest,"verify_token","8fcfd86ebc4a47adbea10245a26277c2");
add_param(pRequest,"client_info","数据结构JSON示例");
add_param(pRequest,"extra_data","{'a':'a'}");
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.rp.start', {
'verify_token':'8fcfd86ebc4a47adbea10245a26277c2',
'client_info':'数据结构JSON示例',
'extra_data':'{'a':'a'}'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})