node.bittrex.api icon indicating copy to clipboard operation
node.bittrex.api copied to clipboard

APISIGN_NOT_PROVIDED

Open jatinmehta420 opened this issue 8 years ago • 1 comments

Was using "https://bittrex.com/api/v1.1/account/getbalances?apikey=MY_API_KEY" through postman and got response "APISIGN_NOT_PROVIDED". Where to get this "apisign" and also please tell from where to get "nonce" for appending with the API URL

jatinmehta420 avatar Dec 23 '17 08:12 jatinmehta420

I have calculated hash by following node.js file but still im getting same response "APISIGN_NOT_PROVIDED" const crypto = require('crypto'); var url = 'https://bittrex.com/api/v1.1/account/getbalances?apikey=my_api_key&nonce=123456'; const hmac = crypto.createHmac('sha512', url,'my_secret_key'); console.log(${hmac.digest('hex')} );

jatinmehta420 avatar Dec 23 '17 11:12 jatinmehta420