我在我的应用程序中收到了一个稍微奇怪的请求。我需要在postman或其他类似的程序中复制它,但我不知道怎么做。问题是请求不是以/xxx开头的。这是tomcat日志中捕获的请求:
"GET null HTTP/1.1" 400 435 15
提前谢谢。
Hi Antoniossss,我尝试过使用http://targethost.com/null
,但请求不同,现在日志跟踪显示/,并且响应不是错误请求,而是NotFound。我明白这个请求一定不是很好的形式
"GET /null HTTP/1.1" 404 131 6
发布于 2021-11-15 10:40:42
路径是null
,因此在postman中,您的端点将是http://targethost.com/null
https://stackoverflow.com/questions/69973032
复制相似问题