使用Coinbase PHP库创建事务时,我从API中收到以下错误;缺少参数:type
我添加了调试语句,以再次检查库是否正确发送了类型。
type: "request",
amount: "10",
description: "random string",
to: "test@email.com",
currency: "BTC"
最近还有其他人遇到此问题吗?我认为这是目前coinbase API的问题。
顺着兔子洞跑,确保它正确地将类型发送到API
$transaction = Transaction::request([
'toEmail' => 'test@email.com',
'amount' => new Money(1, 'BTC'),
'description' => 'Test transaction'
]);
$client->createAccountTransaction($client->getPrimaryAccount(), $transaction);
结果:
{
"success": false,
"error": "Missing parameter: `type`"
}
预期:
JSON数据,包括有关请求的信息
答案 0 :(得分:1)
这是API错误...不是php / python ...错误