当连接到 coinbase(和 coinbase 沙盒)时,使用 Python 代码出现 {'message': 'Invalid API Key'} 错误

when connecting to coinbase (and coinbase sandbox) getting {'message': 'Invalid API Key'} errors with Python code

我正在使用以下演示代码(在 Python 3.x 中编写)尝试连接到 Coinbase 沙盒。以下是我一直关注的代码。我不断收到 {'message': 'Invalid API Key'} 错误。我在沙盒网站上创建了两次 API 密钥:https://public.sandbox.pro.coinbase.com/ 但没有任何效果。

我做错了什么?如有任何帮助、提示或建议,我们将不胜感激。

TIA

import json, hmac, hashlib, time, requests, base64
from requests.auth import AuthBase

# Before implementation, set environmental variables with the names API_KEY and API_SECRET

APIKEY = 'XXXXXXX-API'
API_PASS = 'rXXd0XX8XX'
API_SECRET = b'h2IUKbXXXXXXXXXXKL2d9XXXXXXXXXXWde5u+zcXXXXXXXXXXXXGJ8YqD8TXXXXXXXXXXXXXXX3dqM8pXXXXX8w=='

# Create custom authentication for Exchange
class CoinbaseExchangeAuth(AuthBase):
    def __init__(self, api_key, secret_key, passphrase):
        self.api_key = api_key
        self.secret_key = secret_key
        self.passphrase = passphrase

    def __call__(self, request):
        timestamp = str(time.time())
        message = timestamp + request.method + request.path_url + (request.body or b'').decode()
        hmac_key = base64.b64decode(self.secret_key)
        signature = hmac.new(hmac_key, message.encode(), hashlib.sha256)
        signature_b64 = base64.b64encode(signature.digest()).decode()

        request.headers.update({
            'CB-ACCESS-SIGN': signature_b64,
            'CB-ACCESS-TIMESTAMP': timestamp,
            'CB-ACCESS-KEY': self.api_key,
            'CB-ACCESS-PASSPHRASE': self.passphrase,
            'Content-Type': 'application/json'
        })
        return request

api_url = 'https://api-public.sandbox.pro.coinbase.com/'
auth = CoinbaseExchangeAuth(APIKEY, API_SECRET,  API_PASS)


# Get accounts
r = requests.get(api_url + 'accounts', auth=auth)
print(r.json())
# [{"id": "a1b2c3d4", "balance":...

# Place an order
order = {
    'size': 1.0,
    'price': 1.0,
    'side': 'buy',
    'product_id': 'BTC-USD',
}
r = requests.post(api_url + 'orders', json=order, auth=auth)
print(r.json())

我的错误。 API Key

使用的数字不正确

顺便说一句,对于任何来到这里的人来说:沙盒环境有不同的授权密钥,所以你不能使用普通的 API 密钥,你必须创建一个新的。 :)

我在 Python 中找不到有效的解决方案来让 Coinbase Pro 授权我创建的 API 密钥。原始 posters 代码与我的 API 键值一起工作,并改变了沙盒环境(我没有使用沙盒,对于这个问题它是合适的值)。

api_url = 'https://api.exchange.coinbase.com/'

我试过的所有其他 post 都会给我这样的东西:

key: expected bytes or bytearray, but got 'str'

我认为此问题已通过以下行中的 b 解决:

API_SECRET = b'h2IUKbXXXXXXXXXXKL2d9XXXXXXXXXXWde5u+zcXXXXXXXXXXXXGJ8YqD8TXXXXXXXXXXXXXXX3dqM8pXXXXX8w=='

使其成为预期的字节而不是 str。谢谢你 post.