按照this answer on stack之后,我能够从我的个人币别帐户正确提取所有订单或交易数据。
function connect() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var key = '****';
var secret = '****';
var curTime = Number(new Date().getTime()).toFixed(0);
var symbol = "TRXETH";
var limit = 13;
var string = "symbol="+symbol+"&limit=12×tamp=" + curTime;
var sKey = Utilities.computeHmacSha256Signature(string, secret);
sKey = sKey.map(function(e) {
var v = (e < 0 ? e + 256 : e).toString(16);
return v.length == 1 ? "0" + v : v;
}).join("");
var params = {
'method': 'get',
'headers': {'X-MBX-APIKEY': key},
'muteHttpExceptions': true
};
var url = "https://api.binance.com/api/v3/myTrades?" + string + "&signature=" + sKey;
var data = UrlFetchApp.fetch(url, params);
var data = JSON.parse(data.getContentText());
它工作得很好,但是由于我还需要提取和存储数据,所以我认为自己做了一个新的专用脚本。
它不起作用:
function deposit() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var key = '****';
var secret = '****';
var curTime = Number(new Date().getTime()).toFixed(0);
var string = "/wapi/v3/withdrawHistory.html?timestamp=" + curTime;
var sKey = Utilities.computeHmacSha256Signature(string, secret);
sKey = sKey.map(function(e) {
var v = (e < 0 ? e + 256 : e).toString(16);
return v.length == 1 ? "0" + v : v;
}).join("");
var params = {
'method': 'get',
'headers': {'X-MBX-APIKEY': key},
'muteHttpExceptions': true,
//'signature': sKey
};
var url = "https://api.binance.com" + string + "&signature=" + sKey;
var data = UrlFetchApp.fetch(url, params);
var data = JSON.parse(data.getContentText());
现在在github上有几个票可以解决这个问题,但是似乎没有一个适合我的情况:有人可以告诉我我的代码有什么问题吗?谢谢
Github 1
Github 2 Binance Official Documentation
最佳答案
您用于访问Binance API的令牌是正确的。
您要使用Binance API中的“提取历史记录”方法。
我可以从您的脚本和回复中理解如上。如果我的理解是正确的,那么下面的修改如何?
修改后的脚本:
从:
var string = "/wapi/v3/withdrawHistory.html?timestamp=" + curTime;
至:
var string = "timestamp=" + curTime;
和
从:
var url = "https://api.binance.com" + string + "&signature=" + sKey;
至:
var url = "https://api.binance.com/wapi/v3/withdrawHistory.html?" + string + "&signature=" + sKey;
参考:
Withdraw History of Binance API
关于javascript - {msg =此请求的签名无效。,success = false} Binance Api提取和存款请求错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59275041/