查询文本名单中的词条内容
1. 请求
1.1 请求地址
区域 | 请求地址 |
---|---|
国内 | https://api.open.tuputech.com/v3/management/keyword/search/<secretId> |
提示
<secretId>
需替换为您的应用 SID
,请联系客户经理为您开通及配置。关于 SID
详见 常见问题(FAQ)。
1.2 请求方法
POST
1.3 请求头
Content-Type: application/json
1.4 请求参数
参数名称 | 类型 | 是否必需 | 说明 |
---|---|---|---|
timestamp | Number | 是 | 当前服务器的 Unix 时间戳,可以是毫秒或秒级。 |
nonce | Number | 是 | 随机数 |
signature | String | 是 |
|
thesaurusId | String | 是 | 文本名单 ID |
content | String | 否 | 需要模糊搜索的词条内容, 如果为空, 则范围为整个名单库 |
page | Number | 否 | 第几页,从 1 开始,默认为 1 |
limit | Number | 否 | 返回条目数限制,默认为 1 |
1.5 请求示例
{
"thesaurusId": "<thesaurusId>",
"content": "<content>",
"page": "<page>",
"limit": "<limit>",
"timestamp": "<timestamp>",
"nonce": "<nonce>",
"signature": "<signature>"
}
2. 响应
2.1 响应内容
参数名称 | 类型 | 说明 |
---|---|---|
json | String | 响应内容 JSON 转义后的字符串 |
signature | String | 响应内容签名 |
2.2 响应参数
参数名称 | 类型 | 是否可能为空 | 说明 |
---|---|---|---|
code | Number | 否 | 状态码 |
nonce | Number | 否 | 随机数 |
message | String | 否 | 相关信息 |
timestamp | Number | 否 | 时间戳 |
hasNext | boolean | 否 | 是否存在下一页 |
total | Number | 否 | 词条总数 |
keywords | Array<Keyword> | 否 | 词条信息,详见 keyword 结果说明 |
keyword 结果说明
参数名称 | 类型 | 是否可能为空 | 说明 |
---|---|---|---|
content | String | 否 | 词条文本 |
updatedAt | Datetime | 否 | 更新时间 |
2.3 响应示例
{
"json": "{\"code\":0,\"keywords\":[{\"content\":\"xxxx\",\"updatedAt\":\"2022-08-1607:01:51.935+0000UTC\"}],\"message\":\"success\",\"nonce\":0.65333554465516,\"timestamp\":1669602627}",
"signature": "iq72eJlFhYrbMJQxwPOG9my9kGSAVZnnW5GeH8kTOUaxj1sn0J2nDMSBi/5EnOU6nhUm2sgEWEoR4C/Oou4CD3++jV4BYfg/wAq5Vs953IaPJESGt+k9bgkxtijlYhKWyMtWecl41A9JkQAt+Vh2I7JxCy5n5/MRfRlqw49XSac="
}