I'm trying to use Python to access the trading API at coinnest.co.kr, a cryptocurrency exchange. To do this I must follow the documentation found here: https://www.coinnest.co.kr/doc/private.html
We get a key pair of public key: asdf-asdf-asdf-asdf and private key: qwer-qewr-qwer-qwer.
The request parameters are:
"key":"asdf-asdf-asdf-asdf",
"nonce":1505209177,
"coin":"btc",
"id":3
Then the string to be signed will be:
key=asdf-asdf-asdf-asdf&nonce=1505209278&coin=btc&id=3
Now we use the md5 hash of qwer-qewr-qwer-qwer as the key and encrypt the above string by sha256 and we get 66b2935f3ba82a4a17074d439adab1043a63df4a177af68fe76a3f4f350ef55d, which will be used as the signature.
My current issue is that I am unable to get the same result as the example. I am unsure if their example is accurate. Is the private key "qwer-qewr-qwer-qwer" or "qwer-qwer-qwer-qwer". Is the nonce "1505209177" or "1505209278"?
#!/usr/bin/python2.7
import hashlib
import hmac
secret = 'qwer-qewr-qwer-qwer'
message = 'key=asdf-asdf-asdf-asdf&nonce=1505209278&coin=btc&id=3'
key = hashlib.md5(secret).hexdigest()
print hmac.new(key, message, hashlib.sha256).hexdigest()
Using the code above, I obtain a signature of "afdfb1c331670d95c93868948ff769719b28d879ac94589fa44c4d5b8eacab04"
versus the expected result of
"66b2935f3ba82a4a17074d439adab1043a63df4a177af68fe76a3f4f350ef55d"
Maybe you're supposed to brute force the API docs?
Which corresponds to:
So the following should work:
Looks like you were doing the right thing, but their nonce changed, and the
qwer-qewr-qwer-qwer
private key is correct.