I'm in R trying to pull csv data from an FTP server which "Requires implicit FTP over TLS". With some help from this answer I was able to connect to the server using the following code:
# required packages
library(RCurl)
# credentials
url <- "ftps://ftp.ekeystone.com"
pwd <- "xxxxxxx:yyyyyyyy"
# recover raw files
rawFiles <- getURL(url = url, userpwd = pwd, ftp.use.epsv = FALSE)
However, I'm getting the following error:
Error in function (type, msg, asError = TRUE) : Access denied: 530
I do not know much about FTP servers, but the person that helped me in the other thread told me this message with 530 code seems like a code coming from the server and thus I'm being able to connect to the server. Not sure what I'd need to do now in order to resolve the access denied problem. Any help much appreciated.
Here is a screenshot that was provided to me as a reference to implement this code.
