我必須張貼JSON作爲請求Curl將我怎樣才能通過JSON沒有轉義序列捲曲?
curl -H 'Content-Type: application/json' -X POST http://localhost:3000/users.json\ -d "{"user" : {"email":"[email protected]", "password":"qwerty", "password_confirmation":"qwerty"}}"
但這顯示Multi_json decode
錯誤。
它接受這個。
curl -H 'Content-Type: application/json' -X POST http://localhost:3000/users.json -d "{\"user\" : {\"email\":\"[email protected]\", \"password\":\"qwerty\", \"password_confirmation\":\"qwerty\"}}"
我怎麼能發送JSON沒有逃脫呢?
這與軌道無關 –
其實我已經從https://github.com/plataformatec/devise_example克隆了一個例子,在那裏我已經傳遞了沒有轉義序列的值,它的工作,但沒有在其他人的工作。 – logesh