If someone is using v4.x of FlUrl, here is another way to ignore the certificate warnings:
FlurlHttp.ConfigureClientForUrl("https://some-api.com/")
.ConfigureInnerHandler((handler) =>
{
handler.ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => true;
}
)