반응형
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
반응형
'developer tip' 카테고리의 다른 글
Bash에서 실행 된 마지막 명령을 반향합니까? (0) | 2020.10.25 |
---|---|
속성 또는 인덱서는 out 또는 ref 매개 변수로 전달 될 수 없습니다. (0) | 2020.10.25 |
쉼표 천 단위 구분 기호가있는 문자열을 숫자로 구문 분석하려면 어떻게해야합니까? (0) | 2020.10.25 |
Symfony2-포함 된 양식 유형에 대한 유효성 검사가 작동하지 않음 (0) | 2020.10.25 |
포드의 컨테이너 내부에서 포드의 자체 IP 주소를 아는 방법은 무엇입니까? (0) | 2020.10.25 |