Bittrex v3 API-无效签名响应

问题描述 投票:1回答:1

我正在尝试使用Bittrex v3 beta API,但我不断得到:

{'code': 'INVALID_SIGNATURE'}

作为回应。

我已经使用Javascript和Python进行过尝试,所以我同时包含了这两个脚本-如果您发现任何错误,请告诉我。

Python(首次尝试):

#!/Users/eamonwhite/.pyenv/versions/3.6.3/bin/python3.6
import requests
import time
import hashlib
from pprint import pprint
import json
import hmac
import base64
import codecs

# api-endpoint 
url = "https://api.bittrex.com/v3/orders/closed"

api_key = b'yyyyyyyyy'
secret = b'xxxxxxxxx'

api_timestamp = str(int(time.time() * 1000))
print(api_timestamp)

params = {'marketSymbol':'BTC-LOOM','pageSize': 200,'startDate': '2019-09-25T01:10:27.000','endDate': '2019-09-25T01:29:27.000'}

signature = hashlib.sha512(b'').hexdigest()

pre_sign = api_timestamp+url+'GET'+signature
print(pre_sign)

pre_sign_var = pre_sign.encode()
sig = hmac.new(secret, pre_sign_var, hashlib.sha512).hexdigest()
headers = {'Api-Key': api_key, 'Api-Timestamp': api_timestamp, 'Api-Content-Hash': signature, 'Api-Signature': sig}
# sending get request and saving the response as response object 
r = requests.get(url = url, params = params, headers = headers) 

# extracting data in json format 
data = r.json() 

pprint(data)

Javascript(第二次尝试-直接从API文档中提取):

var CryptoJS = require("crypto-js");
const fetch = require('node-fetch');

const url = 'https://api.bittrex.com/v3/orders/closed';
const data = {'marketSymbol':'BTC-LOOM','pageSize': 200,'startDate': '2019-09-25T01:10:27.000','endDate': '2019-09-25T01:29:27.000'};

var content_hash = CryptoJS.SHA512('').toString(CryptoJS.enc.Hex);

var api_timestamp = new Date().getTime();

var pre_sign_string = api_timestamp+url+'GET'+content_hash;
var signature = CryptoJS.HmacSHA512(pre_sign_string, 'xxxxxxsecretxxxxx').toString(CryptoJS.enc.Hex);

const headers = {'Api-Key': 'zzzzz', 'Api-Timestamp': api_timestamp, 'Api-Content-Hash': content_hash, 'Api-Signature': signature, 'Content-Type': 'application/json'};

function obj_to_query(obj, base_url) {
    var parts = [];
    for (var key in obj) {
        if (obj.hasOwnProperty(key)) {
            parts.push(encodeURIComponent(key) + '=' + encodeURIComponent(obj[key]));
        }
    }
    return base_url+"?" + parts.join('&');
}

async function getOrders(url = '', data = {}, headers = {}) {

  return fetch(url, {
          method: 'get',
          headers: headers,
      })
      .then(res => res.json())
      .then(json => {
        console.log(json)
        return json
      });
}

var query_string = obj_to_query(data, url)

var r = getOrders(query_string, data, headers);

console.log(r);

我返回的错误与Api-Signature标头有关,所有其他标头都是正确的,否则它们将引发错误-我已经在签名之前输出了我拥有的字符串,它看起来与在文档中,所以我觉得API肯定有问题,因为它仍处于测试阶段。

请让我知道是否是这种情况,所以我不再尝试:)谢谢

javascript python authentication cryptography cryptojs
1个回答
0
投票

最终使它工作起来并不确定为什么,但是我所做的一件事是将我的url移出该变量,并将其包含在创建已编码URI字符串的函数的return语句中。但是,它总是返回相同的数据不管我使用什么marketSymbol,只有几笔交易回来...这是我每次/ orders / closed都会得到的输出,而不管marketSymbol

[ { id: '62b7764c-2c35-4588-b01b-15fbc2e6fc16',
    marketSymbol: 'BTC-USD',
    direction: 'SELL',
    type: 'LIMIT',
    quantity: '0.00733630',
    limit: '8315.81600000',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '0.00733630',
    commission: '0.15251830',
    proceeds: '61.00732139',
    status: 'CLOSED',
    createdAt: '2019-09-25T16:03:53.09Z',
    updatedAt: '2019-09-25T16:03:53.09Z',
    closedAt: '2019-09-25T16:03:53.09Z' },
  { id: '21ca06f8-8e00-4d71-993c-3a7d53f57f1c',
    marketSymbol: 'BTC-USD',
    direction: 'BUY',
    type: 'LIMIT',
    quantity: '0.00733630',
    limit: '8334.93200000',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '0.00733630',
    commission: '0.15286890',
    proceeds: '61.14756163',
    status: 'CLOSED',
    createdAt: '2019-09-25T15:56:55.57Z',
    updatedAt: '2019-09-25T15:57:02.92Z',
    closedAt: '2019-09-25T15:57:02.92Z' },
  { id: '59f2d104-1213-4634-bbd9-6dc8e7d6b91f',
    marketSymbol: 'BTC-USD',
    direction: 'SELL',
    type: 'LIMIT',
    quantity: '0.00744902',
    limit: '8250.00000000',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '0.00744902',
    commission: '0.15363603',
    proceeds: '61.45441500',
    status: 'CLOSED',
    createdAt: '2019-09-24T19:43:20.76Z',
    updatedAt: '2019-09-24T19:43:21.09Z',
    closedAt: '2019-09-24T19:43:21.09Z' },
  { id: 'e39d4a85-c144-493b-98e1-99c91db5bdad',
    marketSymbol: 'BTC-USDT',
    direction: 'BUY',
    type: 'LIMIT',
    quantity: '0.00939489',
    limit: '10001.59789805',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '0.00939489',
    commission: '0.23468751',
    proceeds: '93.87500532',
    status: 'CLOSED',
    createdAt: '2019-09-22T16:37:46.92Z',
    updatedAt: '2019-09-22T16:37:46.92Z',
    closedAt: '2019-09-22T16:37:46.92Z' },
  { id: '5dcc5a06-1eab-460f-b353-78263e9dac0b',
    marketSymbol: 'BTC-USDT',
    direction: 'SELL',
    type: 'LIMIT',
    quantity: '0.00953213',
    limit: '9907.07077638',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '0.00953213',
    commission: '0.23608870',
    proceeds: '94.43548654',
    status: 'CLOSED',
    createdAt: '2019-09-22T03:21:51.15Z',
    updatedAt: '2019-09-22T03:29:40.98Z',
    closedAt: '2019-09-22T03:29:40.98Z' },
  { id: 'bdc95671-fee0-46fb-bb48-4fdf2cee7cae',
    marketSymbol: 'GRS-BTC',
    direction: 'SELL',
    type: 'LIMIT',
    quantity: '22.56987578',
    limit: '0.00002226',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '22.56987578',
    commission: '0.00000125',
    proceeds: '0.00050263',
    status: 'CLOSED',
    createdAt: '2019-09-22T03:15:19.59Z',
    updatedAt: '2019-09-22T03:15:19.59Z',
    closedAt: '2019-09-22T03:15:19.59Z' },
  { id: '3528c223-d40d-41bc-866c-6c92f0a38195',
    marketSymbol: 'GRS-BTC',
    direction: 'BUY',
    type: 'LIMIT',
    quantity: '22.56987578',
    limit: '0.00002254',
    timeInForce: 'GOOD_TIL_CANCELLED',
    fillQuantity: '22.56987578',
    commission: '0.00000126',
    proceeds: '0.00050871',
    status: 'CLOSED',
    createdAt: '2019-09-22T02:55:56.84Z',
    updatedAt: '2019-09-22T03:07:04.18Z',
    closedAt: '2019-09-22T03:07:04.18Z' } ]

我正在使用Bittrex提交票证

© www.soinside.com 2019 - 2024. All rights reserved.