指定名单添加词条
1. 请求
1.1 请求地址
区域 | 请求地址 |
---|---|
国内 | https://api.open.tuputech.com/v3/management/keyword/create/<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 |
keywords | Array<Keyword> | 是 | 词条数组(添加过程会忽略重复和空白的词条),单次请求添加数量应小于 10,000 ,详见 keyword 结果说明 |
Keyword 结果说明
参数名称 | 类型 | 是否必需 | 说明 |
---|---|---|---|
content | String | 是 | 词条文本 |
1.5 请求示例
{
"thesaurusId": "<thesaurusId>",
"timestamp": "<timestamp>",
"nonce": "<nonce>",
"signature": "<signature>",
"keywords": [
{
"content": "1 xxxx"
},
{
"content": "2 xxxx"
},
{
"content": "3 xxxx"
}
]
}
2. 响应
2.1 响应内容
参数名称 | 类型 | 说明 |
---|---|---|
json | String | 响应内容 JSON 转义后的字符串 |
signature | String | 响应内容签名 |
2.2 响应参数
参数名称 | 类型 | 是否可能为空 | 说明 |
---|---|---|---|
code | Number | 否 | 状态码 |
nonce | Number | 否 | 随机数 |
message | String | 否 | 相关信息 |
timestamp | Number | 否 | 时间戳 |
keywords | Array<Keyword> | 否 | 词条信息(添加过程中会忽略重复和空白的词条),详见 keyword 结果说明 |
Keyword 结果说明
参数名称 | 类型 | 是否可能为空 | 说明 |
---|---|---|---|
code | Number | 否 | 状态码,标识该文本是否成功入库,详见公共服务状态码 |
error | String | 否 | 错误原因 |
content | String | 否 | 词条文本 |
2.3 响应示例
{
"json": "{\"code\":0,\"keywords\":[{\"code\":0,\"error\":\"\",\"content\":\"1 xxxx\"},{\"code\":0,\"error\":\"\",\"content\":\"2 xxxx\"},{\"code\":0,\"error\":\"\",\"content\":\"3 xxxx\"}],\"message\":\"success\",\"nonce\":0.65333554465516,\"timestamp\":1669602627}",
"signature": "iq72eJlFhYrbMJQxwPOG9my9kGSAVZnnW5GeH8kTOUaxj1sn0J2nDMSBi/5EnOU6nhUm2sgEWEoR4C/Oou4CD3++jV4BYfg/wAq5Vs953IaPJESGt+k9bgkxtijlYhKWyMtWecl41A9JkQAt+Vh2I7JxCy5n5/MRfRlqw49XSac="
}