4番目または5番目のリクエストごとに異なるMD5ハッシュが返されるのはなぜですか?
url = "http://data.wien.gv.at/daten/wfs?service=WFS&request=GetFeature&version=1.1.0&typeName=ogdwien:BEZIRKSGRENZEOGD&srsName=EPSG:4326&outputFormat=json"
response = Net::HTTP.get_response(URI.parse(url))
data = response.body
result = ActiveSupport::JSON.decode(data)
jsonHash = Digest::MD5.hexdigest(data)
puts jsonHash
jsonHashは、a843a3e2dcffb9b1940ea4a48bf260f0の場合もあれば、9b0d15b9f97c542b07bde361be64edcdの場合もあります。
URLからのデータは決して変更されません..これは静的JSONです..なぜこれが機能しないのですか!?