Fix times scraping to use fromJSON
ur_scrape_times
previously used httr::GET
to pull in data from times_json_url
.
This started throwing errors as data was no longer getting neatly pulled out of response into a data frame - potentially due to update of data format from Times Higher Education (THE).
Updated to use jsonlite::fromJSON
to pull in time_json_url
data instead.