Добрый день, нужно сделать данный запрос на php, помогите)
Делаю по данному коду, выдает что неправильный json.
<?php
$json = '{
"merchantId":544097332,
"key":"my token",
"userIds":[544097332]
}';
$url = 'https://coin-without-bugs.vkforms.ru/merchant/score/';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($json));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
echo $response;
curl_close($ch);
Как надо сделать?!
Заранее спасибо