调用华为云开放API、5G消息、自定义、functiongraph类型的连接器方法
连接器操作名
操作的请求参数
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参数从连接器详情页测试部分卡片获取
Connector client interface