我对Ruby很陌生。我已经尝试查看在线文档,但我没有找到任何非常有效的方法。我想在以下 HTTP 请求中包含一个用户代理,即 bot 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