我在调用https://api.kraken.com/0/private/AddOrder结束点时收到{"error":["EAPI:Invalid nonce"]}
。
以json的形式传递以下参数:
JSONObject jsonObject = new JSONObject();
jsonObject.accumulate("pair", "XXBT");
jsonObject.accumulate("type ", "sell");
jsonObject.accumulate("ordertype ", "market");
jsonObject.accumulate("price", "2");
jsonObject.accumulate("volume", "1");
设置API-Key和API-Sign。
nonce = String.valueOf(System.nanoTime());
使用上述逻辑生成nonce。知道我哪里错了吗?