I've looked a lot around on Stack Overflow to find an answer to my issue, but simply can't. I'm trying to post the following JSON
<?php
$data_string = '{
"jsonrpc": "2.0",
"method": "login",
"id": 1,
"params": {
"params": {
"username": "4321",
"password": "1234"
}
}
}';
$ch = curl_init('https://domain.com');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
echo $result;
?>
I don't get any response, even though it works fine with jQuery and AJAX. When I check Chrome's developer tools, the method is GET, which is weird as I set it to POST in the code.
Any ideas what I'm doing wrong?