我使用捲曲發送此:POST空捲曲JSON
curl -i -H "Accept: application/json" -H "Content-type: application/json" -X POST -d "{firstname:james}" http://hostname/index.php
我想在的index.php
<?php
die(var_dump($_POST));
?>
,輸出
array(0) {
}
這樣顯示POST
我必須誤解有關通過POST發送JSON數據的內容
感謝您的時間
爲您編輯的問題 – PandemoniumSyndicate 2012-08-16 15:40:02
我同意:您沒有正確設置您的JSON/HTTP發佈數據。看看這個鏈接:http://stackoverflow.com/questions/8045260/post-json-data-to-simple-rails-application-with-curl – paulsm4 2012-08-16 15:41:41
我認爲你需要引用變量,因爲它們是字符串不是數字 – Waygood 2012-08-16 15:42:14