如何使用 Cryptocapital API v4,找不到 sdk 下载 link
how to use Cryptocapital API v4, can't find sdk download link
Cryptocapital.co 提供 API 来兑换加密货币,我想访问他们的 API 以与网站集成,他们这里有文档 - https://api.cryptocapital.co/v4
他们有如下示例代码
var key = '1234567890abcdef';
var secret = '1234567890abcdef';
var command = 'PING';
var nonce = Date.now();
var message = command + nonce;
var signature = CryptoJS.SHA1(message + key + secret);
var options = {
url: 'https://api.cryptocapital.co/v4/ping',
headers: {
'key': key,
'message': message,
'signature': signature,
'nonce': nonce
}
};
request(options, function(err, res, body) {
// do something
// ...
});
没有下载 link 或对任何 SDK 的引用,当我 运行 这段代码时它说
request is not defined
我不知道从哪里开始 API。
请查看文档并帮助我确定我做错了什么。
Cryptocapital.co 提供 API 来兑换加密货币,我想访问他们的 API 以与网站集成,他们这里有文档 - https://api.cryptocapital.co/v4
他们有如下示例代码
var key = '1234567890abcdef';
var secret = '1234567890abcdef';
var command = 'PING';
var nonce = Date.now();
var message = command + nonce;
var signature = CryptoJS.SHA1(message + key + secret);
var options = {
url: 'https://api.cryptocapital.co/v4/ping',
headers: {
'key': key,
'message': message,
'signature': signature,
'nonce': nonce
}
};
request(options, function(err, res, body) {
// do something
// ...
});
没有下载 link 或对任何 SDK 的引用,当我 运行 这段代码时它说
request is not defined
我不知道从哪里开始 API。
请查看文档并帮助我确定我做错了什么。