创建敏感词接口[批量]

  • 接口说明: 修改敏感词[批量]
  • 接口地址: /api/stop-words/batch
  • 请求方式: POST

请求参数

按敏感词批量插入规则:
「敏感词」=「替换词(或处理方式)」
如需分别设置 ugc 与 username 可使用 | 分隔
主题与回复(ugc)可使用的处理方式:
忽略 {IGNORE}、审核 {MOD}、禁止 {BANNED}、替换 {REPLACE} (可直接写替换内容,默认为 **)
用户名(username)可使用的处理方式:
忽略 {IGNORE}、禁止 {BANNED}

正确示例
abc
abc=123
abc={BANNED}
abc={MOD}|{IGNORE}
abc=456|{BANNED}
abc={IGNORE}|{BANNED}
abc={BANNED}|{IGNORE}

错误示例
\=content

参数名称类型是否必须描述
dataobject基础数据
typestring数据类型,固定值 stop-words
wordsarray数组中每个元素都是按敏感词批量插入规则编写的字符串
overwritebool是否覆盖原有敏感词

请求示例

  1. {
  2. "data": {
  3. "type": "stop-words",
  4. "overwrite": true,
  5. "words": [
  6. "abc=123",
  7. "法西斯",
  8. "不良言论={MOD}|{IGNORE},",
  9. "what={BANNEN}|{BANNED}"
  10. ]
  11. }
  12. }

返回说明

  • 成功,http 状态码 201
  • 失败,http 状态码 500

返回结果

参数名称类型出现要求描述
dataobject基础数据
typestring数据类型
createdint创建数量
updatedint修改数量
uniqueint重复数量

返回示例

  1. {
  2. "data": {
  3. "type": "stop-words",
  4. "created": 2,
  5. "updated": 0,
  6. "unique": 2
  7. }
  8. }