I am working on a universal Windows 10 application. I am trying to connect to an OAuth server with an automatically signed certificate.
When I open a web view on this server, I get an error message:
"The security certificate required to access this resource is not valid."
I wanted to use the following construct, but the ServicePointManager does not exist in the Universal App.
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
Any idea how to get around ssl checking in these applications? Thanks.
source share