Ruby将令牌密钥放入请求中

时间:2019-06-25 13:09:49

标签: ruby api noaa

我不知道如何将密钥放入请求中,以便将它们作为

发送回去
{"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>

1 个答案:

答案 0 :(得分:4)

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

因此,您可能应该尝试以下版本(未经测试的代码):

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标头的更多信息,可以在this StackOverflow 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