Rubyの新機能です。私はオンラインのドキュメントを見てみることを試みたが、私はかなり動作しているものは見つけられていない。私はUser-Agentを以下のHTTPリクエスト、bot get_response()とget()に含めたいと思います。誰かが私を正しい方向に向けることができますか?HTTPリクエストのユーザーエージェント、Ruby
# 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
これはあなたの問題の解決策だと思う:http://www.dzone.com/snippets/send-custom-headers-rubyまたはhttp://stackoverflow.com/questions/587559/ruby-how-to-make -an-http-get-with-modified-headers – nhahtdh