[php] PHP를 사용하여 JSON 게시물 보내기

이 json 데이터가 있습니다.

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

그리고 json URL에 게시해야합니다 :
http : // domain / OnLeagueRest / resources / onleague / Account / CreditAccount

PHP를 사용하여이 게시물 요청을 어떻게 보낼 수 있습니까?



답변

외부 종속성 또는 라이브러리를 사용하지 않고 :

$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/


답변

이 목적으로 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);


답변

사용 CURL luke 🙂 진지하게, 그것은 그것을하는 가장 좋은 방법 중 하나이며 응답을 얻습니다.


답변

그주의 file_get_contents의 솔루션을하지 예상대로 연결하지 닫으면 서버 반환 연결 닫기 는 HTTP 헤더한다.

반면 CURL 솔루션은 연결을 종료하므로 PHP 스크립트가 응답을 기다리면서 차단되지 않습니다.


답변