Error in open.connection(con, "rb") : HTTP error 400.

I'm trying to scrape reviews from AppStore for an application using iTunesR package. I was able to clearly scrape for the first 10 pages, however, I'm getting an error in the 11th page. According to the documentation, the author pointed out this error and suggested to configure R for HTTP or HTTPS proxy. I'm not sure what it is and I really appreciate if someone could help me

'''r

install itunesr directly from CRAN:

install.packages("itunesr")

the development version from GitHub:

install.packages("devtools")
devtools::install_github("amrrs/itunesr")

library(itunesr)
options(timeout= 4000000)

for (i in 1:10) {
assign(paste0("whatsapp", i), getReviews('310633997','us',i))
}

whatsapp11 <- getReviews('310633997','us',11)
'''

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.