I am trying to scrape HTML or JSON file in a site which references economists through the world. Here is an exemple of the page I am trying to exploit : https://ideas.repec.org/f/pan296.html
More accurately, I am trying to scrape the data shown when clicking on the button "Export references", in JSON, HTML or whatever. Here is what I do :
test <- rvest::html_session("https://ideas.repec.org/f/pan296.html") %>% jump_to("https://ideas.repec.org/cgi-bin/refs.cgi")
test$response
The connexion works well, but the output is empty :
Response [https://ideas.repec.org/cgi-bin/refs.cgi]
Date: 2020-07-13 08:50
Status: 200
Content-Type: text/plain; charset=utf-8
<EMPTY BODY>
Any idea ?