使用php发送json帖子


83

我有这个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我如何发送此帖子请求?


2
提供更多详细信息或代码
jimy 2011年

我只需要发送带有userID,itemKind,值,描述和itemID的json帖子
Carlos Martins

@Gumbo Chrome与您不同意;)
Phil Phil

3
@Phil:JSON不是JavaScript,反之亦然。Chrome可能接受该代码,因为它具有JavaScript解释器。但是,如果您JSON.parse用来解析该代码,则肯定会失败。
Gumbo

@Gumbo感谢您提供更多信息。问题是未加引号的键吗?
菲尔,

Answers:


116

使用任何外部依赖项或库:

$options = array(
  'http' => array(
    'method'  => 'POST',
    'content' => json_encode( $data ),
    'header'=>  "Content-Type: application/json\r\n" .
                "Accept: application/json\r\n"
    )
);

$context  = stream_context_create( $options );
$result = file_get_contents( $url, false, $context );
$response = json_decode( $result );

$ response是一个对象。可以像往常一样访问属性,例如$ response-> ...

其中$ data是包含数据的数组:

$data = array(
  'userID'      => 'a7664093-502e-4d2b-bf30-25a2b26d6021',
  'itemKind'    => 0,
  'value'       => 1,
  'description' => 'Boa saudaÁ„o.',
  'itemID'      => '03e76d0a-8bab-11e0-8250-000c29b481aa'
);

警告:如果在php.ini中将allow_url_fopen设置设置为Off,则此方法将无效。

如果您正在为WordPress开发,请考虑使用提供的API:https : //developer.wordpress.org/plugins/http-api/


1
我知道我迟到了,但是用这种方法能否获得响应头?
solarshado '16

3
太棒了,谢谢您提到没有任何扩展!
joonas.fi 2016年

没有扩展总是欢迎的。我不知道WP为此有一个标准化的API。额外感谢您提供的信息!
VedranŠego'16

2
可以使用stream_get_meta_data获取@solarshado原始响应头。
Daniels118

1
一个小的改进建议,您也可以将标头放入数组中,尤其是在需要添加更多标头(例如授权)的情况下。在这种情况下,为“\ r \ n”应该不会被添加。
zero0cool

135

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

1
我具有比JSON更多的值-是的,我也具有JSON值。.我现在该怎么做?我总共要发布三个值:title = somevalue&hash = somevalue&json = JSON VALUE。现在如何使用php做到这一点?
LIGHT 2012年

1
在我的情况下,这不起作用(stackoverflow.com/questions/34021817/…)。我的nodejs收到了{}。知道为什么吗?
Fane

如果您将此file_get_contents方法与本机方法进行基准测试,它们的速度几乎完全相同
Brian Leishman


@LIGHT-$content = http_build_query( array( 'key1' => 'value1', 'key2' => 'value2', 'json' => json_encode($array_to_become_json) ) );您之前准备$array_to_become_json = array(...)过的地方。
ToolmakerSteve

0

认真使用CURL luke :),这就是做到这一点的最佳方法之一,您可以获得响应。


10
卷曲并不总是启用的...有时您需要用它来做旧的方式...
Benjamin Eckstein 2014年

0

请注意,当服务器返回HTTP标头中的Connection:close时,file_get_contents解决方案不会关闭连接,而应关闭该连接。

另一方面,CURL解决方案会终止连接,因此不会通过等待响应来阻止PHP脚本。


很棒的观察
nensamuel
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.