JSON RPC 2.0 API 在 PHP 中使用 CURL 调用 - Changelly API

JSON RPC 2.0 API Call using CURL in PHP - Changelly API

我正在尝试使用以下代码调用 changelly API,但它返回 "Unauthorized" 作为响应。

如果有人可以帮助识别我在下面的代码中犯的错误,我将不胜感激。

$API_URL = 'https://api.changelly.com';
$API_KEY = 'XXXXX';
$API_SECRET = 'XXXXX';

$message = array();
$message['jsonrpc'] = '2.0';
$message['method'] = 'getMinAmount';
$message['params'] = array('from' => 'BTC', 'to' => 'LTC');
$message['id'] ='12345';
$data = json_encode($message);
$sign = hash_hmac('SHA512', $data, $API_SECRET);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $API_URL);
curl_setopt($ch, CURLOPT_HEADER, false); 
curl_setopt($ch, CURLOPT_GET, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);    
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/json",'Authorization:api-key: '.$API_KEY.':sign: '.$sign));

$final_result = curl_exec($ch); 
curl_close($ch);
echo '<pre>';
print_r($final_result);

Changelly API 指南位于 https://changelly.com/developers

谢谢

在您的代码中,您的 headers 组错误。

请检查此示例:https://github.com/changelly/changelly-examples/blob/master/php/example.php,希望对您有所帮助。