在Rails中使用httparty获取请求中的区分大小写的标头

时间:2018-07-12 18:15:10

标签: ruby ruby-on-rails-5 httparty net-http

当我使用httparty发出GET请求时,我当前遇到错误。当我使用curl时,该呼叫有效。错误如下:

  

\“ Authdate \”:\“ 1531403501 \”}“},{” error_code“:   “ external_auth_error”,“ error_message”:“日期标头丢失或   时间戳超出范围”“}}

当我通过curl发出请求时,这就是我使用的标头。

curl -X GET -H "AuthDate: 1531403501"

但是,如您所见,请求从AuthDate变为Authdate导致错误。这是我拨打电话的方式:

require 'openssl'
require 'base64'

module SeamlessGov
  class Form
    include HTTParty
    attr_accessor :form_id
    base_uri "https://nycopp.seamlessdocs.com/api"

    def initialize(id)
      @api_key = ENV['SEAMLESS_GOV_API_KEY']
      @signature = generate_signature
      @form_id = id
      @timestamp = Time.now.to_i
    end

    def relative_uri
      "/form/#{@form_id}/elements"
    end

    def create_form
      self.class.get(relative_uri, headers: generate_headers)
    end

    private

    def generate_signature
      OpenSSL::HMAC.hexdigest('sha256', ENV['SEAMLESS_GOV_SECRET'], "GET+#{relative_uri}+#{@timestamp}")
    end

    def generate_headers
      {
        "Authorization"  => "HMAC-SHA256 api_key='#{@api_key}' signature='#{@signature}'",
        "AuthDate" => @timestamp
      }
    end
  end
end

有任何解决方法吗?

2 个答案:

答案 0 :(得分:0)

根据规范https://stackoverflow.com/a/41169947/1518336,标头不区分大小写,因此您正在访问的服务器似乎有误。

看一下实现HTTParty的Net::HTTPHeader

  

与原始哈希访问不同,HTTPHeader通过不区分大小写的键提供访问

看起来像downcases类的标题键,以确保一致性。

您可能需要查看不依赖net/http的其他网络库。也许curb

答案 1 :(得分:0)

以下文章中有解决此问题的方法

https://github.com/jnunemaker/httparty/issues/406#issuecomment-239542015

我创建了文件lib/net_http.rb

require 'net/http'

class Net::HTTP::ImmutableHeaderKey
  attr_reader :key

  def initialize(key)
    @key = key
  end

  def downcase
    self
  end

  def capitalize
    self
  end

  def split(*)
    [self]
  end

  def hash
    key.hash
  end

  def eql?(other)
    key.eql? other.key.eql?
  end

  def to_s
    def self.to_s
      key
    end
    self
  end
end

然后在标题中

def generate_headers
      {
        "Authorization"  => "HMAC-SHA256 api_key='#{@api_key}' signature='#{@timestamp}'",
         Net::HTTP::ImmutableHeaderKey.new('AuthDate') => "#{@timestamp}"
      }
end