I am trying to get information from this link, it is in JSON format
http://data.fidessa.com/FragPro2/fragBreakdown?fim=EPRE.PA&start=20180801&end=20180810&global=Y&format=json
However, I keep getting an error to get response from the link
Error in file(con, "r") : cannot open the connection
Here is my code:
library(jsonlite)
url <- "http://data.fidessa.com/FragPro2/fragBreakdown?fim=EPRE.PA&start=20180801&end=20180810&global=Y&format=json"
data <- fromJSON(url)
(update) I find out that I need to stay in the browser which I log in to Fidessa to make the link work. Is there any way that I can send my log in information to Fidessa and get data from the link ?