Search content
Sort by

Showing 4 of 4 results by sebbes
Post
Topic
Board Legal
Re: Was Vircurex ever held accountable?
by
sebbes
on 04/11/2016, 19:11:27 UTC
I can only second the previous comments. My Litecoins were also frozen in 2014. Never got any response on any of my emails, not a single. The promised to return the litecoins over time, after two months they stopped. Now they claim they pay interest. This can only be to attract funds being deposited. I warn everyone to be very, very careful whatever amount you decide to trade on this site!!!
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN - EXCHANGE] | www.Allcoin.com |DVK RIN added
by
sebbes
on 17/09/2015, 09:24:05 UTC
Hi,

I successfully withdrew all my coins yesterday (Sept. 16) via the trader API. Took a couple of attempts, but eventually got them all. Unfortunately I deposited some BTC, they don't show and support does not react.
Post
Topic
Board Exchanges
Re: Poloniex tradingApi, from JAVA
by
sebbes
on 24/04/2015, 08:35:20 UTC
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:
  ...  
   conn.setRequestProperty("Key", "your public key");

   //build your args query parameter String (needs to include "command", "nonce" ), e.g.
   String queryArgs = "command=cancelOrder&orderNumber=12345"
   //encrypt the queryArgs using HmacSHA512. In java that looks something like this
   Mac shaMac = Mac.getInstance("HmacSHA512") //with try/catch for NoSuchAlgorithmException
   SecretKeySpec  keySpec = new SecretKeySpec(.getBytes(), "HmacSHA512");

   shaMac.init(keySpec);
   final byte[] macData = shaMac.doFinal(queryArgs.getBytes());
   String result = Hex.encodeHexString(macData); //again with try/catch for InvalidKeyException
   //this result you add as header param
   conn.setRequestProperty("Sign", result);
   //and the queryArgs themselves you write onto the connection's outputstream
   OutputStreamWriter out = new OutputStreamWriter(conn.getOutputStream());
   out.write(queryArgs);
    ...

But without posting your code it is impossible to assist!

Regards,
Sebastian
Post
Topic
Board Exchanges
Re: Poloniex tradingApi, from JAVA
by
sebbes
on 14/01/2015, 05:47:25 UTC
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