You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i think this error related to http with older devices
if you are using http package try override the client trust the certificate class MyHttpOverrides extends HttpOverrides { @override HttpClient createHttpClient(SecurityContext? context) { return super.createHttpClient(context) ..badCertificateCallback = (X509Certificate cert, String host, int port) => true; } }
call it inside main void main() async { HttpOverrides.global = new MyHttpOverrides(); ...
Hello guys, I'm getting this error
java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
Any suggestion ?
The text was updated successfully, but these errors were encountered: