Since the exception message is about SSL,
i think that the error thrown because invalid or expired SSL certificate.
You can try to ignore them by specifying ValidationCallback before creating a request.
ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;