前端获取指定 Tag 配置接口

  • 接口说明: 前端获取指定 Tag 配置
  • 接口地址: /api/settings/{tags}
  • 请求方式: GET

请求参数

参数名称类型描述
/拼接stringdefault,qcloud

请求示例:

  1. /api/settings/default,qcloud 多个的话逗号拼接

返回结果

参数名称类型出现要求描述
attributestag 集合 key-valuekey-value 形式

返回说明

  • 返回空, http 状态码: 204

返回示例

  1. {
  2. "data": [
  3. {
  4. "type": "settings_tags",
  5. "id": "default",
  6. "attributes": {
  7. "allow_register": "1",
  8. "censor1": "true",
  9. "ldd": "asd",
  10. "password_length": "0",
  11. "password_strength": "0,1",
  12. "register_close": "1",
  13. "site_close": "0",
  14. "site_close_msg": "论坛正在维护,请稍后再试...",
  15. "site_name": "discuss"
  16. }
  17. },
  18. {
  19. "type": "settings_tags",
  20. "id": "qcloud",
  21. "attributes": {
  22. "qcloud_app_id": "12345678",
  23. "qcloud_secret_id": "ABCDEF",
  24. "qcloud_secret_key": "啦啦啦"
  25. }
  26. }
  27. ]
  28. }