Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/308.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Kraken API:身份验证问题(密钥无效)_Java_Api_Authentication - Fatal编程技术网

Java Kraken API:身份验证问题(密钥无效)

Java Kraken API:身份验证问题(密钥无效),java,api,authentication,Java,Api,Authentication,我正在尝试用Java实现比特币交换平台Kraken的API。不幸的是,为了检索私有用户数据,我在尝试执行身份验证时遇到了麻烦 特别是,我正在使用以下实现: Kraken API的文档如下: 但是,到目前为止,我只收到{“error”:[“EAPI:Invalid key”]}。我在实现中没有发现任何错误,我尝试了几种不同的API键。有没有人可以快速查看一下实现并查找代码中的缺陷?还是有人成功地实现了Kraken API 非常感谢 认证说明如下: HTTP头:API密钥=API密钥API签名=使用

我正在尝试用Java实现比特币交换平台Kraken的API。不幸的是,为了检索私有用户数据,我在尝试执行身份验证时遇到了麻烦

特别是,我正在使用以下实现: Kraken API的文档如下:

但是,到目前为止,我只收到{“error”:[“EAPI:Invalid key”]}。我在实现中没有发现任何错误,我尝试了几种不同的API键。有没有人可以快速查看一下实现并查找代码中的缺陷?还是有人成功地实现了Kraken API

非常感谢

认证说明如下:

HTTP头:API密钥=API密钥API签名=使用 HMAC-SHA512的(URI路径+SHA256(nonce+POST数据))和base64 解码的秘密API密钥

Post data:nonce=始终增加无符号64位整数otp= 双因素密码(如果启用双因素,则不需要) 注意:在我的例子中,otp是禁用的,所以post数据只包含nonce

我正在试验的实现是:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.security.InvalidKeyException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.codec.binary.Base64;

public class KrakenClient {

    protected static String key = "myAPIKey";     // API key
    protected static String secret = "MySecret====";  // API secret
    protected static String url = "api.kraken.com";     // API base URL
    protected static String version = "0"; // API version


    public static void main(String[] args) throws Exception {
        queryPrivateMethod("Balance");
    }

    public static void queryPrivateMethod(String method) throws NoSuchAlgorithmException, IOException{

        long nonce = System.currentTimeMillis();

        String path = "/" + version + "/private/" + method; // The path like "/0/private/Balance"

        String urlComp = "https://"+url+path; // The complete url like "https://api.kraken.com/0/private/Balance"

        String postdata = "nonce="+nonce;

        String sign = createSignature(nonce, path, postdata);

        postConnection(urlComp, sign, postdata);
    }

    /**
     * @param nonce
     * @param path
     * @param postdata
     * @return
     * @throws NoSuchAlgorithmException
     * @throws IOException
     */
    private static String createSignature(long nonce, String path,
            String postdata) throws NoSuchAlgorithmException, IOException {

        return hmac(path+sha256(nonce + postdata),  new String(Base64.decodeBase64(secret)));
    }

    public static String sha256Hex(String text) throws NoSuchAlgorithmException, IOException{
        return org.apache.commons.codec.digest.DigestUtils.sha256Hex(text);
    }

    public static byte[] sha256(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException{
        MessageDigest md = MessageDigest.getInstance("SHA-256");

        md.update(text.getBytes());
        byte[] digest = md.digest();

        return digest;
    }

    public static void postConnection(String url1, String sign, String postData) throws IOException{

        URL url = new URL( url1 );
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();

        connection.addRequestProperty("API-Key", key);
        connection.addRequestProperty("API-Sign", Base64.encodeBase64String(sign.getBytes()));
        //      connection.addRequestProperty("API-Sign", sign);
        connection.addRequestProperty("User-Agent", "Mozilla/4.0");
        connection.setRequestMethod( "POST" );
        connection.setDoInput( true );
        connection.setDoOutput( true );
        connection.setUseCaches( false );
        //      connection.setRequestProperty( "Content-Type",
        //              "application/x-www-form-urlencoded" );
        connection.setRequestProperty( "Content-Length", String.valueOf(postData.length()) );

        OutputStreamWriter writer = new OutputStreamWriter( connection.getOutputStream() );
        writer.write( postData );
        writer.flush();


        BufferedReader reader = new BufferedReader(
                new InputStreamReader(connection.getInputStream()) );

        for ( String line; (line = reader.readLine()) != null; )
        {
            System.out.println( line );
        }

        writer.close();
        reader.close();
    }


    public static String hmac(String text, String secret){

        Mac mac =null;
        SecretKeySpec key = null;

        // Create a new secret key
        try {
            key = new SecretKeySpec( secret.getBytes( "UTF-8"), "HmacSHA512" );
        } catch( UnsupportedEncodingException uee) {
            System.err.println( "Unsupported encoding exception: " + uee.toString());
            return null;
        }
        // Create a new mac
        try {
            mac = Mac.getInstance( "HmacSHA512" );
        } catch( NoSuchAlgorithmException nsae) {
            System.err.println( "No such algorithm exception: " + nsae.toString());
            return null;
        }

        // Init mac with key.
        try {
            mac.init( key);
        } catch( InvalidKeyException ike) {
            System.err.println( "Invalid key exception: " + ike.toString());
            return null;
        }


        // Encode the text with the secret
        try {

            return new String( mac.doFinal(text.getBytes( "UTF-8")));
        } catch( UnsupportedEncodingException uee) {
            System.err.println( "Unsupported encoding exception: " + uee.toString());
            return null;
        }
    }
}
删除path变量的“/”前缀

String path = version + "/private/" + method; // The path like "0/private/Balance"

以下是我如何与Haskell合作的:

signature body nonce path secret = convertToBase Base64 hmacsha512
  where
    sha256 = convert (hash $ nonce `append` body :: Digest SHA256)
    hmacsha512 = hmac secretd (path `append` sha256) :: HMAC SHA512
    secretd = fromRight $ convertFromBase Base64 secret :: ByteString
因此,您需要:

  • 获取
    nonce+body
    的SHA256散列,即
    SHA256(“1487687774151000nonce=1487687774151000”)
  • 将摘要的原始字节追加到
    路径
    (结果将无法打印,balance方法的示例路径为
    “/0/private/balance”
  • 使用base64解码的
    secret
    获取HMAC SHA512摘要
  • 编码到Base64