Hi all,
I am trying to connect to Salesforce via R Studio, using the package, salesforcer. I am very new to using R Studio to work with data that's online/R Studio in general.
My issue is that I keep receiving this error and have no idea how to go about solving it:
Error in curl::curl_fetch_memory(url, handle = handle) :
Timeout was reached: [login.salesforce.com] Connection timed out after 10010 milliseconds
This is the code I've been using:
library(dplyr, warn.conflicts = FALSE)
library(salesforcer)
Using Basic Username-Password authentication
sf_auth(username = "user name",
password = "{password}")
I've been reading through this (README), the user guide I'm assuming, to try and connect to Saleforce.
If anyone has any insight, it'd be much appreciated!! Thank you in advance!