Ruby 将令牌密钥放入请求中

Ruby putting token key in requests

我不知道如何将我的密钥放入我的请求中,以便它们被发回

{"status"=>"400", "message"=>"Token parameter is required."}

这是我一直在使用的代码

require 'net/http'
require 'json'

token = 'YiwwVvywLngtPT***************'
url = 'https://www.ncdc.noaa.gov/cdo-web/api/v2/stations?locationid=FIPS:23&limit=5&sortfield=mindate'
uri = URI(url)
response = Net::HTTP.get(uri)
response.authorization = token
puts JSON.parse(response)

我已经尝试了一些我在互联网上找到的不同的东西,但所有的东西都只给出

的错误
undefined method `methodname' for #<String:0x00007fd97519abd0>

根据 API documentation(基于您引用的 URL),您需要在名为 token 的 header 中提供令牌。

因此,您可能应该尝试以下的一些变体(代码未经测试):

token = 'YiwwVvywLngtPT***************'
url = 'https://www.ncdc.noaa.gov/cdo-web/api/v2/stations?locationid=FIPS:23&limit=5&sortfield=mindate'
uri = URI(url)
request = Net::HTTP::Get.new(uri)
request['token'] = token
response = Net::HTTP.start(uri.hostname, uri.port) do |http|
  http.request(request)
end

有关 Net:HTTP header 的更多信息,请参见 this Whosebug answer


附带说明一下,如果您没有锁定使用 Net::HTTP,请考虑切换到更友好的 HTTP 客户端,也许 HTTParty。然后,完整的代码如下所示:

require 'httparty'

token = 'YiwwVvywLngtPT***************'
url = 'https://www.ncdc.noaa.gov/cdo-web/api/v2/stations?locationid=FIPS:23&limit=5&sortfield=mindate'
response = HTTParty.get url, headers: { token: token }

puts response.body