외부 종속성 또는 라이브러리를 사용하지 않고 :
$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/