developer tip

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

copycodes 2020. 10. 25. 12:28
반응형

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를 사용하는 것이 좋습니다 . http://codex.wordpress.org/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);

use CURL luke :) seriously, thats one of the best ways to do it AND you get the response.

참고URL : https://stackoverflow.com/questions/6213509/send-json-post-using-php

반응형