4

私はPythonを学んでおり、演習としてビットコイン市場で取引を行うためのプログラムを作成しようとしました:https ://bitcurex.com 。APIリファレンスは次のとおりです:https ://bitcurex.com/reading-room/API 。PHPクライアントの例があるので、それをPythonに変換しようとしたので、次のようになりました。

import math
import time
import simplejson
import urllib
import urllib2
import hmac,hashlib

def microtime():
    return '%f %d' % math.modf(time.time())

def query( path, key, secret, data={} ):
    mt = microtime().split()
    nonce = mt[1] + mt[0][2:]
    data['nonce'] = nonce

    post_data = urllib.urlencode( data )

    sign = hmac.new( secret.decode('base64'), post_data, hashlib.sha512 ).digest()

    headers = {'Rest-Key' : key,
               'Rest-Sign': sign.encode('base64').strip(),
               'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)',
               'Content-type': 'application/x-www-form-urlencoded'}
    print headers

    url = 'https://bitcurex.com/api/0/' + path

    req = urllib2.Request( url, post_data, headers )
    response = urllib2.urlopen(req)

    return simplejson.loads(response.read())

print query('getFunds', '29a28e8fe234537056a8b256c0df50413f50da9c49ca61991ea8b8f108a88e09',  'y2NDxKGa/xvhtXrDP+3oscbBUFSac9+T8jzu2nRmt0vBdHbbl8NRqdmxKFr2IwwY5LAskTQZGyy2XONaNN6Jrg==')

これらのAPIキーは機能しています-getFundsクエリはそれらを使用してのみ行うことができます。

「ログインする必要があります」というエラーが返され続けます。私はFiddlerProxyDebuggerを介してその要求を調べようとしましたが、ここにその試みのヘッダーがあります。

POST /api/0/getFunds HTTP/1.1
Accept-Encoding: identity
Rest-Sign: Dd1WBn2T5SYTbqMMohOxr46IaLDrkelgH7AgkrrB0mT0PxKfv15vSJ3b6xNdc5PO2Yz9cDpu0u/H
WIc7bH56sQ==: 
Content-Length: 22
Rest-Key: 29a28e8fe234537056a8b256c0df50413f50da9c49ca61991ea8b8f108a88e09
Connection: close
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)
Host: bitcurex.com
Content-Type: application/x-www-form-urlencoded

Fiddlerがエラーを表示しています:

Incorrectly formed request headers.
Missing colon in header #3, WIc7bH56sQ==

何か案は?私のレストサインが長すぎるか、そのようなもののようです。私のコードはPHPの例とまったく同じように動作するはずだと思います。私が間違っているのは何ですか?

4

1 に答える 1

2

この行は疑わしいです:

'Rest-Sign': sign.encode('base64').strip()

ヘッダーの値に文字通りの「\n」記号を含めたいですか?これはencode('base64')が返すものです---あなたの例では、この文字列:

'Dd1WBn2T5SYTbqMMohOxr46IaLDrkelgH7AgkrrB0mT0PxKfv15vSJ3b6xNdc5PO2Yz9cDpu0u/H\nWIc7bH56sQ=='

\n真ん中にあることに注意してください。よくわかりませんが、おそらくすべての\n兆候を取り除くことで、必要なものが得られます。

于 2012-12-15T17:12:54.213 に答える