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