我很新的红宝石。 我试着找了在线文档,但我没有发现任何东西相当多的工作。 我想包括)一个用户代理下面的HTTP请求,机器人get_response(和get()。 有人能指出我朝着正确的方向吗?
# Preliminary check that Proggit is up
check = Net::HTTP.get_response(URI.parse(proggit_url))
if check.code != "200"
puts "Error contacting Proggit"
return
end
# Attempt to get the json
response = Net::HTTP.get(URI.parse(proggit_url))
if response.nil?
puts "Bad response when fetching Proggit json"
return
end