web-dev-qa-db-ja.com

PHPを使用してJSON投稿を送信する

私はこのデータを持っています:

{ 
    userID: 'a7664093-502e-4d2b-bf30-25a2b26d6021',
    itemKind: 0,
    value: 1,
    description: 'Boa saudaÁ„o.',
    itemID: '03e76d0a-8bab-11e0-8250-000c29b481aa'
}

そして、私はjsonのURLに投稿する必要があります: http:// domain/OnLeagueRest/resources/onleague/Account/CreditAccount

pHPを使用して、この投稿リクエストを送信するにはどうすればよいですか?

72
FrozenButcher

Without外部依存関係またはライブラリを使用:

$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'
);

警告:これは、allow_url_fopen設定がOffphp.iniで。

WordPress向けに開発している場合は、提供されているAPIの使用を検討してください。 http://codex.wordpress.org/HTTP_API

101

この目的で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);
128

cURLを:)のように真剣に使用してください。これはそれを行うための最良の方法の1つであり、応答が返されます。

0
Knobik