Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question