gpt4 book ai didi

javascript - Coinbase 现货价格 SSL 错误 : does not support SSL at Request

转载 作者:行者123 更新时间:2023-12-03 02:02:44 25 4
gpt4 key购买 nike

我正在使用提供的示例 coinbase 对 coinbase 进行 ab API 调用,但出现错误:SSL 错误:https://api.coinbase.com/v2/prices/BTC-USD/spot 不支持 SSL根据要求

npm 安装 coinbasevar Client = require('coinbase').Client;

var btcClient = new Client({
'apiKey': '...',
'apiSecret': '...',
'version': '2010-04-20'
});

var currencyCode = 'USD';

btcClient.getSpotPrice({
'currency': currencyCode
}, function(err, price) {
console.log('Current bitcoin price in ' + currencyCode + ': ' + price.data.amount);
});

调用已完成,我能够捕获错误。直接调用api就可以正常工作:

https://api.coinbase.com/v2/prices/BTC-USD/spot?date=2017-01-01

尽管有missing_version警告

有什么想法吗?

谢谢

最佳答案

啊,

我需要将 'strictSSL': false 添加到新客户端:

var btcClient = new Client({
'apiKey': '...',
'apiSecret': '...',
'version': '2010-04-20',
'strictSSL': false
});

关于javascript - Coinbase 现货价格 SSL 错误 : does not support SSL at Request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49939776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com