R is giving me an SSL error that says Error in curl::curl_fetch_memory(url, handle = handle). What should I do?

This error almost always indicates an issue with your firewall.

We recommend using code similar to this to fix the issue: 

library(httr) set_config( use_proxy(url="18.91.12.23", port=8080, username="user",password="password") )
	

You would need to modify the above code so that it uses your specific network information. You can get this information from your IT department.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.