Title: Poloniex tradingApi, from JAVA Post by: drbobbo on November 11, 2014, 09:58:24 PM I throw this question out here in hope of some input, I am totally stuck here ....
I am trying to access the Poloniex tradingApi from JAVA code, and all I get is the error "invalid command". A standalone static (utilities) method that illustrates the problem public static final long generateNonce(){ Date d = new Date(); return d.getTime(); } public static final String getAddressPoloniex(String currency, double amount, String address) throws IOException{ String result = null; String nonce = new BigDecimal(WithdrawUtils.generateNonce()).toString(); String connectionString = "https://poloniex.com/trading?command=returnDepositAddresses&nonce="+nonce; String hmac512 = MyUtils.hmac512Digest(connectionString, Keys.POLONIEX_SECRET_KEY); HttpsURLConnection poloniexCon = null; try { poloniexCon = (HttpsURLConnection)new URL(connectionString).openConnection(); poloniexCon.addRequestProperty("Key", Keys.POLONIEX_API_KEY); poloniexCon.addRequestProperty("Sign", hmac512); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } try { poloniexCon.setRequestMethod("POST"); } catch (ProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } poloniexCon.setRequestProperty("Content-length", String.valueOf(connectionString.length())); poloniexCon.setRequestProperty("Content-Type","application/x-www- form-urlencoded"); poloniexCon.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0;Windows98;DigExt)"); poloniexCon.setDoInput(true); DataInputStream input = new DataInputStream( poloniexCon.getInputStream() ); StringBuffer s = new StringBuffer(); for( int c = input.read(); c != -1; c = input.read() ) { s.append((char)c); } result = s.toString(); input.close(); return result; // here result has {"error":"Invalid command."} } This approach works well with for example Bittrex exchange. My feeling is that the problem is in the HMAC SHA512 signing. I do that like this: public static String hmac512Digest(String msg, String keyString) { String digest = null; try { SecretKeySpec key = new SecretKeySpec((keyString).getBytes("UTF-8"), "HmacSHA512"); Mac mac = Mac.getInstance("HmacSHA512"); mac.init(key); byte[] bytes = mac.doFinal(msg.getBytes("ASCII")); StringBuffer hash = new StringBuffer(); for (int i = 0; i < bytes.length; i++) { String hex = Integer.toHexString(0xFF & bytes); if (hex.length() == 1) { hash.append('0'); } hash.append(hex); } digest = hash.toString(); } catch (UnsupportedEncodingException e) { } catch (InvalidKeyException e) { } catch (NoSuchAlgorithmException e) { } return digest; } If it is not that, I am out of ideas. This HMAC digest works fine with Bittrex. The Poloniex API doc is relatively brief on how this should be calculated. The error is confusing and indicates there is a problem with the command, but all other commands to the trading (private) API gives me the same error. All calls to the public API works fine. I have spent several hours on this now. I know my keys are fine, they work with python code. The first person with a solution that actually fixes this and send me / post their BTC address will get a 0.1 BTC bounty! / Title: Re: Poloniex tradingApi, from JAVA Post by: sebbes on January 14, 2015, 05:47:25 AM I throw this question out here in hope of some input, I am totally stuck here .... I am trying to access the Poloniex tradingApi from JAVA code, and all I get is the error "invalid command". A standalone static (utilities) method that illustrates the problem public static final long generateNonce(){ Date d = new Date(); return d.getTime(); } public static final String getAddressPoloniex(String currency, double amount, String address) throws IOException{ String result = null; String nonce = new BigDecimal(WithdrawUtils.generateNonce()).toString(); String connectionString = "https://poloniex.com/trading?command=returnDepositAddresses&nonce="+nonce; String hmac512 = MyUtils.hmac512Digest(connectionString, Keys.POLONIEX_SECRET_KEY); HttpsURLConnection poloniexCon = null; try { poloniexCon = (HttpsURLConnection)new URL(connectionString).openConnection(); poloniexCon.addRequestProperty("Key", Keys.POLONIEX_API_KEY); poloniexCon.addRequestProperty("Sign", hmac512); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } try { poloniexCon.setRequestMethod("POST"); } catch (ProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } poloniexCon.setRequestProperty("Content-length", String.valueOf(connectionString.length())); poloniexCon.setRequestProperty("Content-Type","application/x-www- form-urlencoded"); poloniexCon.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0;Windows98;DigExt)"); poloniexCon.setDoInput(true); DataInputStream input = new DataInputStream( poloniexCon.getInputStream() ); StringBuffer s = new StringBuffer(); for( int c = input.read(); c != -1; c = input.read() ) { s.append((char)c); } result = s.toString(); input.close(); return result; // here result has {"error":"Invalid command."} } This approach works well with for example Bittrex exchange. My feeling is that the problem is in the HMAC SHA512 signing. I do that like this: public static String hmac512Digest(String msg, String keyString) { String digest = null; try { SecretKeySpec key = new SecretKeySpec((keyString).getBytes("UTF-8"), "HmacSHA512"); Mac mac = Mac.getInstance("HmacSHA512"); mac.init(key); byte[] bytes = mac.doFinal(msg.getBytes("ASCII")); StringBuffer hash = new StringBuffer(); for (int i = 0; i < bytes.length; i++) { String hex = Integer.toHexString(0xFF & bytes); if (hex.length() == 1) { hash.append('0'); } hash.append(hex); } digest = hash.toString(); } catch (UnsupportedEncodingException e) { } catch (InvalidKeyException e) { } catch (NoSuchAlgorithmException e) { } return digest; } If it is not that, I am out of ideas. This HMAC digest works fine with Bittrex. The Poloniex API doc is relatively brief on how this should be calculated. The error is confusing and indicates there is a problem with the command, but all other commands to the trading (private) API gives me the same error. All calls to the public API works fine. I have spent several hours on this now. I know my keys are fine, they work with python code. The first person with a solution that actually fixes this and send me / post their BTC address will get a 0.1 BTC bounty! / Are you still looking for a solution to this? Here are your problems: 1) You are not doing a POST request, but a GET. Poloniex trading api docu states you must use POST. Just setting the request method to "POST" is not enough. 2) You are only supposed to hash the query parameters, not the full url. But when you so POST you will see, because with a post you don't concatenate the url and the params, rather you write the params in the connection outputstream. Let me know if you need help... Cheers, Sebastian Title: Re: Poloniex tradingApi, from JAVA Post by: kb4scv on March 16, 2015, 03:09:02 PM I have exactly the same problem with http post call in JavaScript. It has to be the hash method as I can change the hash string and it doesn't care when I send it. Get the invalid command return on all private post calls, even after Poloniex guy sent me a sample call for the post call. I am stumped as well at this point, but will post if I figure it out.
Best of Luck! Title: Re: Poloniex tradingApi, from JAVA Post by: arunka71 on March 17, 2015, 03:01:44 AM Java != JavaScript ?
Title: Re: Poloniex tradingApi, from JAVA Post by: sebbes on April 24, 2015, 08:35:20 AM I have exactly the same problem with http post call in JavaScript. It has to be the hash method as I can change the hash string and it doesn't care when I send it. Get the invalid command return on all private post calls, even after Poloniex guy sent me a sample call for the post call. I am stumped as well at this point, but will post if I figure it out. Best of Luck! The hash method works, I successfully connect to Poloniex. You need to add an HTTP header with your public API key and another one with the the encrypted query args; the query args (plain as in not encrypted) you also write on the connection outputstream (same for JavaScript, Java, Python etc.). so in Java that would look like this: Code: ... But without posting your code it is impossible to assist! Regards, Sebastian Title: Re: Poloniex tradingApi, from JAVA Post by: flash10101 on August 23, 2016, 01:46:00 PM I also tried to connect to the Poloniex API with Java. I followed some advice from this thread and came up with the following code, but for some reason, I always get the error: Invalid command
Any idea what I am doing wrong? ??? Code: public static String POLONIEX_SECRET_KEY = "my secret"; //KEY Title: Re: Poloniex tradingApi, from JAVA Post by: tf315 on September 13, 2016, 12:58:48 AM I also tried to connect to the Poloniex API with Java. I followed some advice from this thread and came up with the following code, but for some reason, I always get the error: Invalid command Any idea what I am doing wrong? ??? Code: public static String POLONIEX_SECRET_KEY = "my secret"; //KEY I haven't tried your code but two things that work in my code: - nonce is part of the query string - I use System.currentTimeMillis() to create the nonce. Not sure if your way will work or not but I know mine does and its much simpler. Title: Re: Poloniex tradingApi, from JAVA Post by: freemanjackal on March 30, 2017, 04:13:45 AM why dont you try to use the push api, if you are not behind an internet proxy i suggest you to use it for getting all the info, i havent been able to use it but it is because i am behind a proxy and i havent found a solution for the existing wamp libraries in java to set this configuration, on internet there is an example of how to with poliniex
|