http協議-PHP使用curl_init post 提交json 外部伺服器報錯

來源:互聯網
上載者:User
關鍵字 http協議 json php curl
http協議jsonphpcurl

[code=php]$serviceURL = 'http://61.153.225.106:5678/Service.asmx/tests';
$ch = curl_init ( $serviceURL );
curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $strjson ); //全部資料使用HTTP協議的POST操作來發送
curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, false );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, array (
'Content-Type: application/json; charset=utf-8;',
'Content-Length: ' . strlen ( $strjson )
) );

curl_setopt($ch,CURLOPT_POST,1);
$result = curl_exec ( $ch );
$errorNo = curl_errno ( $ch );
echo $errorNo."
"; //錯誤號碼 輸出0
echo "error:".curl_error($ch);
echo $result."
"; //執行資訊 報錯
curl_close ( $ch );[/code]

json字串:{"ccode":"1234ew4" , "ddate":"2015-12-16", "ccuscode":"0100001", "cinvcode":"100101", "iquantity":"1", "address":"測試地址", "cmemo":"無", "cmaker":"demo", "cverifer":"demo", "dpredate":"2015-12-17", "imoney":"1"}
其中ccode是需要變化的,同一個插入不進去。

報錯資訊
[img=http://img.bbs.csdn.net/upload/201512/18/1450420302_248471.jpg][/img]

由於是往第三方插入資料,所以沒法改變上傳的形式 ,只能上傳json格式。
另外如果網頁中輸入 http://61.153.225.106:5678/Service.asmx/tests 然後再輸入字串是可以返回字串的。完了以後就想是不是傳送協議問題,但是我傳的又確實是 content-type 為json的資料 。求大神指教,只有12分全部送上

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.