通过terminalcurl json发布请求到rails应用程序

我正在尝试在我的Rails应用上使用os xterminal的curl命令创build一个用户。 不pipe我如何格式化数据,应用程序都会返回一个非我的validation通过的响应。

curl http://localhost:3000/api/1/users.json -i -X POST -d {"user":{"first_name":"firstname","last_name":"lastname","email":"email@email.com","password":"app123","password_confirmation":"app123"}}" 

我试过每一个变化。 我试过使用[]括号,我试过用户= {数据..},似乎没有任何工作。 有任何想法吗?

首先,在你的命令结尾处有一个无关紧要的东西。

尝试这个

 curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d ' {"user":{"first_name":"firstname","last_name":"lastname","email":"email@email.com","password":"app123","password_confirmation":"app123"}}' http://localhost:3000/api/1/users