Has anyone heard of problems using RCurl
vs. httr
when the user is using a proxy?
I have this package taxize in which some functions use RCurl
and some use httr
. A user reports two functions that don't require her to pass in proxy details, and those two functions use RCurl
internally. While some functions that don't work without proxy auth details passed in use httr
. In all cases, these are GET requests.
Is it possible that RCurl
somehow handles the proxy without her having to pass in her proxy username, password, etc., while httr
requires them? If so, why would that be?
This gist has examples of 2 functions that apparently require proxy auth details and 2 that don't.