Putting this in my Start() method worked for me ([source][1])
System.Net.ServicePointManager.ServerCertificateValidationCallback
= (a, b, c, d) => { return true; };
[1]: http://stackoverflow.com/questions/3285489/mono-problems-with-cert-and-mozroots
↧