TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaNlpReviewAnalysisEcommerceRequest req = new AlibabaNlpReviewAnalysisEcommerceRequest();
req.setText("面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!");
AlibabaNlpReviewAnalysisEcommerceResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaNlpReviewAnalysisEcommerceRequest req = new AlibabaNlpReviewAnalysisEcommerceRequest();
req.Text = "面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!";
AlibabaNlpReviewAnalysisEcommerceResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaNlpReviewAnalysisEcommerceRequest;
$req->setText("面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!");
$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.nlp.review.analysis.ecommerce' \
-d 'partner_id=apidoc' \
-d 'sign=A048E8632A7E7A7E787EF2D054C29CA7' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-03+07%3A56%3A58' \
-d 'v=2.0' \
-d 'text=%E9%9D%A2%E6%96%99%E8%88%92%E9%80%82%EF%BC%8C%E6%AC%BE%E5%BC%8F%E5%A5%BD%EF%BC%8C%E5%8F%AA%E6%98%AF%E5%B0%BA%E7%A0%81%E5%81%8F%E5%B0%8F%EF%BC%8C%E5%A5%BD%E5%9C%A8%E6%88%91%E7%9C%8B%E4%BA%86%E5%85%B6%E4%BB%96%E4%B9%B0%E5%AE%B6%E7%9A%84%E8%AF%84%E4%BB%B7%EF%BC%8C%E5%9C%A8%E5%8E%9F%E5%B0%BA%E7%A0%81%E4%B8%8A%E5%8A%A0%E4%BA%86%E4%B8%80%E5%8F%B7%EF%BC%8C%E6%AD%A3%E5%90%88%E9%80%82%EF%BC%8C%E5%BE%88%E6%BB%A1%E6%84%8F%EF%BC%81%E7%BB%99%E6%BB%A1%E5%88%86%EF%BC%81%E6%9C%8D%E5%8A%A1%E5%A5%BD%EF%BC%8C%E5%8F%91%E8%B4%A7%E5%BF%AB%EF%BC%81'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaNlpReviewAnalysisEcommerceRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.text="面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!"
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.nlp.review.analysis.ecommerce");
add_param(pRequest,"text","面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!");
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.nlp.review.analysis.ecommerce', {
'text':'面料舒适,款式好,只是尺码偏小,好在我看了其他买家的评价,在原尺码上加了一号,正合适,很满意!给满分!服务好,发货快!'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})