K
K
khrigo2016-06-17 10:36:37
PHP
khrigo, 2016-06-17 10:36:37

What is the correct way to send JSON POST request?

Good afternoon. Sending a JSON POST request and getting an empty response as a result. Can you tell me how to submit a request?

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json;', 'Content-Length: ' . strlen(json_encode($params))));
curl_setopt($ch, CURLOPT_POST, 1);

$data_string = urlencode(json_encode($params));
curl_setopt($ch, CURLOPT_POSTFIELDS, array("data"=>$data_string));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

$result = curl_exec($ch);
die(var_dump($result));
curl_close($ch);

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vyacheslav Barsukov, 2016-06-17
@slavabars

Remove urlencode

U
Urvin, 2016-06-17
@Urvin

curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);

curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array("data"=>$data_string)));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question