尝试使用Ruby连接到Coinbase GDAX沙箱API。 当前正在使用Faraday,但欢迎使用HTTParty或Ruby Core API建议。
我很难发帖,似乎无法说清我在哪里。
出现一个错误的洗衣清单,但最上面的是:
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/net/http/header.rb:18:in
block in initialize_http_header': undefined method
条“ 1556021965:Fixnum(NoMethodError)
Coinbase文档:https://docs.pro.coinbase.com/?ruby#signing-a-message
简而言之,我的api调用。
payload = {
"data": "DATA"
}
url = 'https://api-public.sandbox.gdax.com/orders'
conn = Faraday.new
response = conn.post do |req|
req.url url
req.headers['REQ-HEADER-1'] = "FOO",
req.headers['REQ-HEADER-1'] = "BAR",
req.body = payload
end
puts response
完整代码
require 'Faraday' require 'base64' require 'openssl' require 'json'
class foo
def initialize
@api_key = '25b1d259417d159443c03ed14eb9ee49'
@api_secret = 'trBTZUj4zLfHEBfbQy3+LeLOaAeAbfG/zCqIvzu3RyiKhqf5y85NYqqZi7GUSBCzhryud1pyOs5idibzdOx/tw=='
@api_pass = '7zkf0bvr6q4'
end
def signature(request_path='', body='', timestamp=nil, method='POST')
body = body.to_json if body.is_a?(Hash)
timestamp = Time.now.to_i if !timestamp
what = "#{timestamp}#{method}#{request_path}#{body}";
# create a sha256 hmac with the secret
secret = Base64.decode64(@api_secret)
hash = OpenSSL::HMAC.digest('sha256', secret, what)
Base64.strict_encode64(hash)
end
def post_buy
usd = get_usd_available
usd = usd / 2
payload = {
"funds": usd.to_s,
"product_id": "BTC-USD",
"side": "buy",
"type": "market"
}
url = 'https://api-public.sandbox.gdax.com/orders'
conn = Faraday.new
response = conn.post do |req|
req.url url
req.headers['CB-ACCESS-KEY'] = @api_key,
req.headers['CB-ACCESS-SIGN'] = signature( url, payload),
req.headers['CB-ACCESS-TIMESTAMP'] = Time.now.to_i,
req.headers['CB-ACCESS-PASSPHRASE'] = @passphrase,
req.body = payload
end
puts response
end
end
foo.new.post_buy
答案 0 :(得分:1)
您可以在http/header.rb处检查代码:它在每个标头上调用strip
,因此每个标头值都应该是一个字符串。
我认为这是令人反感的行,您在此处提供一个整数作为标头值:
req.headers['CB-ACCESS-TIMESTAMP'] = Time.now.to_i
将其转换为字符串应该可以解决:
req.headers['CB-ACCESS-TIMESTAMP'] = Time.now.to_i.to_s