TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSecurityJaqAppOfficialApplyRequest req = new AlibabaSecurityJaqAppOfficialApplyRequest();
AlibabaSecurityJaqAppOfficialApplyRequest.OfficialAppApplyRequest obj1 = new AlibabaSecurityJaqAppOfficialApplyRequest.OfficialAppApplyRequest();
obj1.setAppUrl("http://aaa.com/aa.apk");
obj1.setAppName("MyApp");
obj1.setPkgName("com.my.app");
obj1.setWebsite("http://aaa.com");
obj1.setDeveloper("xxx科技");
obj1.setAppHash("73d9a9c745a6da0e96587efd5662ef57");
obj1.setCertMd5("73d9a9c745a6da0e96587efd5662ef57");
obj1.setOfficialType(1L);
req.setOfficialAppApplyRequest(obj1);
AlibabaSecurityJaqAppOfficialApplyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaSecurityJaqAppOfficialApplyRequest req = new AlibabaSecurityJaqAppOfficialApplyRequest();
AlibabaSecurityJaqAppOfficialApplyRequest.OfficialAppApplyRequestDomain obj1 = new AlibabaSecurityJaqAppOfficialApplyRequest.OfficialAppApplyRequestDomain();
obj1.AppUrl = "http://aaa.com/aa.apk";
obj1.AppName = "MyApp";
obj1.PkgName = "com.my.app";
obj1.Website = "http://aaa.com";
obj1.Developer = "xxx科技";
obj1.AppHash = "73d9a9c745a6da0e96587efd5662ef57";
obj1.CertMd5 = "73d9a9c745a6da0e96587efd5662ef57";
obj1.OfficialType = 1L;
req.OfficialAppApplyRequest_ = obj1;
AlibabaSecurityJaqAppOfficialApplyResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaSecurityJaqAppOfficialApplyRequest;
$official_app_apply_request = new OfficialAppApplyRequest;
$official_app_apply_request->app_url="http://aaa.com/aa.apk";
$official_app_apply_request->app_name="MyApp";
$official_app_apply_request->pkg_name="com.my.app";
$official_app_apply_request->website="http://aaa.com";
$official_app_apply_request->developer="xxx科技";
$official_app_apply_request->app_hash="73d9a9c745a6da0e96587efd5662ef57";
$official_app_apply_request->cert_md5="73d9a9c745a6da0e96587efd5662ef57";
$official_app_apply_request->official_type="1";
$req->setOfficialAppApplyRequest(json_encode($official_app_apply_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.security.jaq.app.official.apply' \
-d 'partner_id=apidoc' \
-d 'sign=D2F732B2E68BC4F1D1BA174399F4B987' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-03+21%3A31%3A28' \
-d 'v=2.0' \
-d 'official_app_apply_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaSecurityJaqAppOfficialApplyRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.official_app_apply_request=""
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.official.apply");
add_param(pRequest,"official_app_apply_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.security.jaq.app.official.apply', {
'official_app_apply_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})