这只是一个幼稚的问题,但我一直坚持通过putty命令行发出HTTP POST请求。执行初始请求后:
~$ POST <url:port/directory>
Please enter content (application/x-www-form-urlencoded) to be POSTed:
...(content posted there)
我没有选择发送命令,因为唯一正在运行的键盘序列是CTRL-Z,它会停止程序,而不是发送命令。 END-OF-FILE还有其他互动吗?
答案 0 :(得分:1)
CTRL-D将模拟EOF。您还可以管道进入POST,这可以使测试更容易,例如:
cat ~/my-json-file.json | POST <url:port/directory>