使用PHP 發送JSON POST 請求
在這個場景中,我們的目標是使用PHP 透過POST 請求將JSON 資料傳送到指定的URL .
問題描述
您擁有JSON 資料並希望將其發佈到JSON URL。 JSON資料的格式如下:
{ userID: 'a7664093-502e-4d2b-bf30-25a2b26d6021', itemKind: 0, value: 1, description: 'Saude', itemID: '03e76d0a-8bab-11e0-8250-000c29b481aa' }
POST請求的目標URL為:
http://domain/OnLeagueRest/resources/onleague/Account/CreditAccount
解決方案
要使用PHP 執行此任務,您可以使用CURL。以下是示範如何執行此操作的範例程式碼:
$url = "your url"; $content = json_encode("your data to be sent"); $curl = curl_init($url); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type: application/json")); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $content); $json_response = curl_exec($curl); $status = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ( $status != 201 ) { die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl)); } curl_close($curl); $response = json_decode($json_response, true);
透過使用此程式碼,您可以透過 POST 請求有效地將 JSON 資料傳送到指定的 URL。
以上是如何使用 PHP 發送 JSON POST 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!