Making a POST HTTP Request To The Poloniex API

419 Views Asked by At

I'm using the site https://www.hurl.it/#top to make a POST HTTP request to the Poloniex Exchange API.

Note that I have generated my Sign by going to https://www.freeformatter.com/hmac-generator.html#ad-output putting my SECRET and API_KEY into the given fields, and choosing the SHA512 algorithm.

I have filled out the fields at https://www.hurl.it/#top with the following (All fields are verbatim other than API_KEY and SECRET for obvious reasons):

Destination

POST: https://poloniex.com/tradingApi

Headers

Key: API_KEY

Sign: SECRET

Parameters

nonce: 0001

command: returnBalances


I am then given the error:

{"error":"Invalid API key\/secret pair."}

What am I doing wrong? Am I not following the API requirements for an HTTP request verbatim? Also I am not looking for any libraries/programming languages to use. I am looking to make this work using this website or something similar, because once I do, I will have what I'm looking for.

1

There are 1 best solutions below

0
On

Note that I have generated my Sign by going to https://www.freeformatter.com/hmac-generator.html#ad-output putting my SECRET and API_KEY into the given fields, and choosing the SHA512 algorithm.

Api & secret are very sensitive data, so take care to:

- Never share your api key and secret on a tier website. (it could be store and be reuse)

- Never send a request containing your api key and secret in clear. (it could be intercepted by a MIM attack and/or your ISP and/or DPI)

Finally :

You may compute yourself (locally) the signature using a PHP wrapper recommended on the Poloniex Api documentation page