ropensci / qualtRics

Download ⬇️ Qualtrics survey data directly into R!
https://docs.ropensci.org/qualtRics
Other
215 stars 69 forks source link

IP address? #346

Open WebCodeBox opened 3 days ago

WebCodeBox commented 3 days ago

Hi everyone

When I call the qualtrics_api_credentials() command, the script not only wants to access the passed base_url, but the firewall also registers an access to this IP address: 20.208.63.39 .

According to ipinfo.io it belongs to Microsoft: https://ipinfo.io/20.208.63.39

Can someone tell me why the library calls the IP address and what data is transmitted? Are there any other IP addresses the package wants to connect which don't belong to Qualtrics?

Many thanks in advance Kind regards WebCodeBox

juliasilge commented 3 days ago

You can check out the code that qualtrics_api_credentials() runs here:

https://github.com/ropensci/qualtRics/blob/03f4b667133d58b1d655e89fd2361bfe6f1dbeb0/R/qualtrics_api_credentials.R#L47

Notice that it doesn't make any API calls or access any URLs including base_url; it only accesses your .Renviron file locally. When I run this function, it does not access any URLs. Seems like this is related to your system and how it access files rather than code run from the R package?