我在使用 Google Sheet 中的脚本调用 Binance cryptoexchange API 时遇到问题。
我已经使用示例https://www.binance.com/restapipub.html#user-content-signed-endpoint-security中的数据检查了我的签名处理, 并且我得到了相同的签名。
我已经用另一个集线器(coinigy.com)检查了我的 API 密钥和秘密,密钥工作正常。
但是我自己执行脚本时仍然出现 401 错误...
币安支持没有回答。
有人可以帮忙吗?
function BinanceTest(key,secret) {
/*var randnumber=Math.random()*500;
Utilities.sleep(randnumber);*/
var baseURL = "https://api.binance.com";
var completeURL = baseURL + "/api/v3/account";
var timestamp=new Date().getTime();
var payload = "timestamp="+timestamp;
var signature = Utilities.computeHmacSha256Signature(payload, secret);
signature = signature.map(function(byte) {
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('');
completeURL=completeURL+"?"+payload+"&signature="+signature;
var params = {
'method': 'get',
'headers': {'X-MBX-APIKEY': key},
'contentType': 'application/x-www-form-urlencoded',
'muteHttpExceptions': true
};
var response = fetchJSON(completeURL,params);
var servertime=fetchJSON("https://api.binance.com/api/v1/time").serverTime;
return [servertime,timestamp,payload,signature,JSON.stringify(params),completeURL,response];
};
function fetchJSON (url) {
var randnumber=Math.random()*3000;
Utilities.sleep(randnumber);
try {
var json = UrlFetchApp.fetch(url,{muteHttpExceptions: true })
} catch (exception) {
Logger.log(url+": "+exception)
return 'exception'
}
if ('undefined' == typeof(json))
return 'Error retrieving JSON data'
if (json.getResponseCode() != 200)
return json.getResponseCode()
json = json.getContentText()
if (json.length<=0)
return 'JSON data was invalid'
try {
json = JSON.parse(json)
} catch (exception) {
Logger.log(url+" "+exception)
return "err2"
}
if ('undefined' == typeof(json) || json == null)
// return 'err'
return 'Quote data was malformed JSON data'
return json
}