Coinbase - php curl sendmoney - 无效签名错误

Coinbase - php curl sendmoney - invalid signature error

我正在尝试使用 coinbase api 来发送和接收金钱并打算在游戏中使用,运行 下面的代码用于发送金钱得到 无效签名错误,不知道我哪里错了。我尝试获取帐户详细信息,效果很好,我能够获取帐户详细信息。

<?php
$API_VERSION = '2016-02-01';
$curl = curl_init();
$timestamp = json_decode(file_get_contents("https://api.coinbase.com/v2/time"), true)["data"]["epoch"];

$req = "/v2/accounts/:account_id/transactions";
$url = "https://api.coinbase.com".$req;
$cle = "xxxxxxx";
$secret = "xxxxxxxx";
$params=['type'=>'send', 'to'=>'xxxxxxxxxx', 'amount'=>0.0001, 'currency'=>'BTC'];

curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $url,
CURLOPT_POST => true,
CURLOPT_USERAGENT, 'local server',
CURLOPT_POSTFIELDS => json_encode($params),
CURLOPT_HTTPHEADER => array(
"CB-VERSION:" . $API_VERSION,
"CB-ACCESS-SIGN:" . hash_hmac('sha256', $timestamp."GET".$req, $secret),
"CB-ACCESS-KEY:" . $cle,
"CB-ACCESS-TIMESTAMP:" . $timestamp,
'Content-Type: application/json'
),
CURLOPT_SSL_VERIFYPEER => false
));

$rep = curl_exec($curl);
curl_close($curl);

print_r($rep);
?>

$req URL 中,您需要将 :account_id 替换为实际的帐户 ID,例如 3c04e35e-8e5a-5ff1-9155-00675db4ac02.

最重要的是,由于这是一个 post 请求,OAuth 签名需要在签名中包含有效负载(POST 数据)。

hash_hmac('sha256', $timestamp."POST".$req.json_encode($params), $secret),

当我遇到这个错误时,它最终变成了帐户 ID,它对于您的每个货币帐户都是不同的。花了太多时间试图弄清楚我的签名有什么问题......无论如何,我肯定会尝试一下,因为 GET 对我有用,但其他所有请求类型都以无效签名错误结束。