-
Hi, Flutter and dio newbie question: Does dio automatically perform TLS certificate validation, or do I need to implement a custom HttpClientAdapter as shown here https://pub.dev/packages/dio#https-certificate-verification ? I'm unclear if this is required, or only necessary to customize default validation. Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
kuhnroyal
Oct 3, 2024
Replies: 1 comment 1 reply
-
This happens automatically for certificates where the Root CA is considered valid by the device. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mplgn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This happens automatically for certificates where the Root CA is considered valid by the device.
You only need to implement custom certificate handling if you want to use custom or self signed certs.