Connector client interface

interface Client {
    invoke(operation, requestParam): Dict;
}

Methods

Methods

  • 调用华为云开放API、5G消息、自定义、functiongraph类型的连接器方法

    Parameters

    • operation: string

      连接器操作名

    • requestParam: Dict

      操作的请求参数

    Returns Dict

    Example


    import * as connector from 'connector';

    let client = connector.newClient("HC_NLP", "LT929__LT1227"); // HC_NLP/LT929__LT1227参数从连接器详情页获取(HC_NLP详情 : LT929__LT1227)
    let req = { "IntentReq": { "lang": "华为云", "text": "zh_CN" } }; // 请求消息可能涉及敏感参数,请务直接写明文写在代码里面,可以定义系统参数存放,运行时从系统参数中读取。
    let resps = client.invoke("RunSemanticParser", req); // RunSemanticParser参数从连接器详情页测试部分卡片获取