faugusztin commented on issue #786: URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/786#issuecomment-694998047
Your server is misconfigured, the server is missing the intermediate certificates. Many browser include common chain certificates, but not everything does. If you run the ` openssl s_client -showcerts -connect cei.b3.com.br:443` command, you will see you get following errors: ``` depth=0 C = BR, ST = SP, L = SAO PAULO, OU = DI-GSI - Gestao de Seguranca da Informacao, O = "B3 S.A. - BRASIL, BOLSA, BALCAO", CN = cei.b3.com.br verify error:num=20:unable to get local issuer certificate verify return:1 depth=0 C = BR, ST = SP, L = SAO PAULO, OU = DI-GSI - Gestao de Seguranca da Informacao, O = "B3 S.A. - BRASIL, BOLSA, BALCAO", CN = cei.b3.com.br verify error:num=21:unable to verify the first certificate verify return:1 ``` Your HTTPS server must also include the intermediate certificates (for "GlobalSign RSA OV SSL CA 2018") in their SSL response. https://support.globalsign.com/ca-certificates/intermediate-certificates/organizationssl-intermediate-certificates ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
