Hi,
I am testing code for the BTC-E trading platform, however, it seems like it can only process one API request per second, if I do more it gives an invalid nonce parameter error back.
I use PHP, this is the code to generate the nonce:
$mt = explode(' ', microtime());
$req['nonce'] = $mt[1];
If I try a more complex nonce, like:
$req['nonce'] = $mt[1].substr($mt[0], 2, 6);
I also get an invalid nonce parameter error back.
Anyone ran into the same problem? How to solve it?
Thanks, Dirk