Binance API Keys

匿名 (未验证) 提交于 2019-12-03 08:51:18

问题:

I have set up a read-only API key on Binance to access account information like currency balances but I can't see the JSON data. The string query I put into the URL returns the following error:

{"code":-2014,"msg":"API-key format invalid."}

The URL I am using is this: https://api.binance.com/api/v3/account?X-MBX-APIKEY=**key**&signature=**s-key**

The documentation for Binance API can be found here: https://www.binance.com/restapipub.html. What am I doing wrong ?

回答1:

You should set the API key in the request header, not as a parameter in the request url. Please provide more information on your request procedure (language, etc.).



回答2:

X-MBX-APIKEY should be set as a field in the HTTP header, and not as a HTTP parameter. See this page for more information on HTTP header fields. However, I tried the same with Excel and could not get it running until now.

Another open question is how to use the secret key.



回答3:

This worked for me:

base_url="https://api.binance.com" account_info="/api/v3/account"  url="${base_url}${account_info}"  apikey="your_apikey" secret="your_secret"  queryString="timestamp=$(date +%s)" #$(python3 binance_time.py) must sync requestBody=""  signature="$(echo -n "${queryString}${requestBody}" | openssl dgst -sha256 -hmac $secret)" signature="$(echo $signature | cut -f2 -d" ")"  req=$(curl -H "X-MBX-APIKEY: $apikey" -X GET "$url?$queryString&signature=$signature") echo $req 


回答4:

Binance's websocket API kinda tricky to use. Also there is no way to use a secret key.

Common usage

  1. Send HTTP POST request with your secret API key as a X-MBX-APIKEY header to https://api.binance.com/api/v1/userDataStream
  2. You will get listen key which should be used for websocket connection. It will be available 1 hour.

    {"listenKey": "your listen key here"}

  3. Use it when connecting to Binance's websocket

wss://stream.binance.com:9443/ws/{your listen key here}

Python example

import ssl from websocket import create_connection  import requests  KEY = 'your-secret-key' url = 'https://api.binance.com/api/v1/userDataStream' listen_key = requests.post(url, headers={'X-MBX-APIKEY': KEY})['listenKey'] connection = create_connection('wss://stream.binance.com:9443/ws/{}'.format(KEY),                                 sslopt={'cert_reqs': ssl.CERT_NONE}) 


回答5:

Using this Binance Exchange API python implementation : https://github.com/sammchardy/python-binance can simplify websocket development.

from binance.client import Client client = Client(api_key, api_secret)   # start aggregated trade websocket for BNBBTC def process_message(msg):     print("message type: {}".format(msg['e']))     print(msg)     # do something  from binance.websockets import BinanceSocketManager bm = BinanceSocketManager(client) bm.start_aggtrade_socket('EOSBTC', process_message) bm.start() 


回答6:

You put it in the header. Following is tested working PHP example borrowed from jaggedsoft binance PHP library, it's a signed request that will return the account status.

$api_key = "cool_key"; $secret = "awesome_secret";  $opt = [     "http" => [         "method" => "GET",         "header" => "User-Agent: Mozilla/4.0 (compatible; PHP Binance API)\r\nX-MBX-APIKEY: {$api_key}\r\n"     ] ]; $context = stream_context_create($opt); $params['timestamp'] = number_format(microtime(true)*1000,0,'.',''); $query = http_build_query($params, '', '&'); $signature = hash_hmac('sha256', $query, $secret); $endpoint = "https://api.binance.com/wapi/v3/accountStatus.html?{$query}&signature={$signature}";  $res = json_decode(file_get_contents($endpoint, false, $context), true); 


文章来源: Binance API Keys
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!