0

我搜索了其他帖子,因为我不是唯一有签名问题的人。我用几种语言尝试过,但我总是遇到同样的问题。

我对 coinbase.com 的 API 身份验证做错了什么:

# normally I fetch the timestamp from https://api.coinbase.com/v2/time
TIMESTAMP=$(date +%s)
SIG=$(echo -n "${TIMESTAMP}GET/v2/accounts" | hmac256 --stdkey $COINBASE_SECRET)

curl https://api.coinbase.com/v2/accounts \
  --header "CB-ACCESS-KEY: $COINBASE_KEY" \
  --header "CB-ACCESS-SIGN: $SIG" \
  --header "CB-ACCESS-TIMESTAMP: $TIMESTAMP" \
  --header "CB-VERSION: 2016-03-08"

在去我正在尝试做类似的事情:

nonce := strconv.FormatInt(int64(time.Data.Epoch), 10)
message := nonce + req.Method + endpoint // endpoint "/v2/accounts"
req.Header.Set("CB-ACCESS-KEY", a.Key)
h := hmac.New(sha256.New, []byte(a.Secret))
h.Write([]byte(message))

signature := hex.EncodeToString(h.Sum(nil))

req.Header.Set("CB-ACCESS-SIGN", signature)
req.Header.Set("CB-ACCESS-TIMESTAMP", nonce)
req.Header.Set("CB-VERSION", "2016-03-08")

而且它似乎不再支持沙箱,因为api.sandbox.coinbase.com它不可用?!

亲切的问候

4

1 回答 1

1

对于 bash/curl,问题是我使用的 hmac 工具echo。以下为我处理 curl 请求:

SIG=$(echo -n "${TIMESTAMP}GET/v2/accounts" | openssl dgst -sha256 -hmac "$COINBASE_SECRET" |cut -d' ' -f2);

关于 golang,我比较了哈希和并得出结论,我正在使用的当前库有些可疑。

我自己写了一个库(https://github.com/Zauberstuhl/go-coinbase),现在它就像一个魅力。除了我Sprintf用于最终编码之外,我正在做与上面相同的操作,但这应该是相同的。

不管怎么说,还是要谢谢你!

于 2017-01-23T19:52:35.530 回答