文档中心 > API类目 > 人工智能实验室开放平台API

taobao.ailab.aicloud.top.hotwords.update (更新热词)

更新ASR热词

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
schema String 可选 OUTIWN schemaKey
user_id String 可选 1231 三方用户id
biz_class String 可选 CONTACT 业务类型
op_type String 可选 FULL 操作类型
content HotWordsContent 可选 热词内容
  • └ words
  • String []
  • 可选
  • ["旺旺","阿狸"]
  • 热词列表

响应参数

名称 类型 示例值 描述
baseresult BaseResult 0 baseresult
  • └ ret_msg
  • String
  • ret_msg
  • └ ret_code
  • Number
  • ret_code

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AilabAicloudTopHotwordsUpdateRequest req = new AilabAicloudTopHotwordsUpdateRequest();
req.setSchema("OUTIWN");
req.setUserId("1231");
req.setBizClass("CONTACT");
req.setOpType("FULL");
AilabAicloudTopHotwordsUpdateRequest.HotWordsContent obj1 = new AilabAicloudTopHotwordsUpdateRequest.HotWordsContent();
obj1.setWords(""旺旺","阿狸"");
req.setContent(obj1);
AilabAicloudTopHotwordsUpdateResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<ailab_aicloud_top_hotwords_update_response>
    <baseresult>
        <ret_msg></ret_msg>
        <ret_code></ret_code>
    </baseresult>
</ailab_aicloud_top_hotwords_update_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部