首頁  >  文章  >  後端開發  >  如何使用 PHP 發送 JSON POST 請求?

如何使用 PHP 發送 JSON POST 請求?

Barbara Streisand
Barbara Streisand原創
2024-11-16 07:48:03201瀏覽

How to Send JSON POST Requests with PHP?

使用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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn