I retrieved all items from a job in Scrapinghub:
url = "https://storage.scrapinghub.com/items/#{job_id}?apikey=#{API_KEY}"
response = HTTParty.get(url)
items = response.parsed_response
The problem is that items is a String instead of a Hash. Is there a way to parse it as a Hash to easier retrieve single items as the response is JSON. If not, how do I best parse the string. Thanks