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

taobao.ailab.aicloud.top.hotwords.get (获取热词)

获取ASR热词

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
schema String 必须 SCHEMA schemeKey
user_id String 必须 1231 三方用户id
biz_class String 必须 CONTACT 业务类型

响应参数

名称 类型 示例值 描述
baseresult BaseResult baseresult
  • ret_value
  • HotWordsContent
  • ret_value
  • └ words
  • String []
  • 热词列表
  • └ ret_msg
  • String
  • SUCCESS
  • ret_msg
  • └ ret_code
  • Number
  • 200
  • ret_code

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AilabAicloudTopHotwordsGetRequest req = new AilabAicloudTopHotwordsGetRequest();
req.setSchema("SCHEMA");
req.setUserId("1231");
req.setBizClass("CONTACT");
AilabAicloudTopHotwordsGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<ailab_aicloud_top_hotwords_get_response>
    <baseresult>
        <ret_value>
            <words>
                <string></string>
            </words>
        </ret_value>
        <ret_msg>SUCCESS</ret_msg>
        <ret_code>200</ret_code>
    </baseresult>
</ailab_aicloud_top_hotwords_get_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

返回
顶部