Invalid nonce kraken

1.7k Views Asked by At

I am getting {"error":["EAPI:Invalid nonce"]} while calling https://api.kraken.com/0/private/AddOrder end point.

passing following params in form of 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");

Setting API-Key and API-Sign as well.

nonce = String.valueOf(System.nanoTime());

Generating nonce using above logic. Any idea where I am going wrong?

1

There are 1 best solutions below

2
On

Try increase option Nonce Window to 5000-10000. You can find this option here.