为了账号安全,请及时绑定邮箱和手机立即绑定

使用php发送json帖子

使用php发送json帖子

PHP
猛跑小猪 2019-10-16 11:05:52
我有这个json数据:{     userID: 'a7664093-502e-4d2b-bf30-25a2b26d6021',    itemKind: 0,    value: 1,    description: 'Saude',    itemID: '03e76d0a-8bab-11e0-8250-000c29b481aa'}并且我需要发布到json网址中: http:// domain / OnLeagueRest / resources / onleague / Account / CreditAccount使用php我如何发送此发布请求?
查看完整描述

3 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

您可以为此使用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);


查看完整回答
反对 回复 2019-10-16
  • 3 回答
  • 0 关注
  • 375 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信