curl -i -k -X GET http://172.16.x.x:5000/config-manager/v2/script_freq?creater=anony&name=test&c_begin_t=2020-08-10 10:55:38
如果直接发送,& 会被系统解析。空格也会被系统解析。
命令需对特殊字符进行转义。上面的命令可以修改为
curl -i -k -X GET http://172.16.x.x:5000/config-manager/v2/script_freq?creater=anony\&name=test\&c_begin_t=2020-08-10 10:55:38
在 & 前面加转义符 , 用 %20 取代空格。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2023-03-18
  • 2021-12-01
  • 2021-12-28
  • 2022-12-23
  • 2021-06-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-18
  • 2021-12-22
  • 2022-01-02
相关资源
相似解决方案