gpt4 book ai didi

android - 预装的 PdfViewerActivity 不适用于 SelfSigned 可信用户证书 Android 11 版本 2

转载 作者:行者123 更新时间:2023-12-04 22:40:33 26 4
gpt4 key购买 nike

我有一台带有自签名证书的服务器。此证书已添加到 Android 11 设备上的受信任凭据/用户列表中。我的应用程序和浏览器可以正常工作:我可以通过 Chrome 浏览器从 MyServer 下载 pdf 文件。
我的网络安全配置.xml

<network-security-config xmlns:tools="http://schemas.android.com/tools">
<base-config cleartextTrafficPermitted="true">
<trust-anchors tools:ignore="AcceptsUserCertificates">
<!-- Trust preinstalled CAs -->
<certificates src="system" />
<!-- Additionally trust user added CAs -->
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>
但是,当我尝试打开 pdf 文件时,我从 PdfViewerActivity 得到 SSLHandshakeException。
我的代码:
Intent pdfIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.myserver.com/example.pdf"));
startActivity(pdfIntent);
错误日志:

I/ActivityTaskManager: Displayed com.google.android.apps.docs/com.google.android.apps.viewer.PdfViewerActivity: +163ms


E/HttpUriOpener: general IOException: SSLHandshakeException


E/PdfViewerActivity: fetchFile:https: javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.


是 PdfViewerActivity 中的错误还是我做错了什么?
我将不胜感激如何解决此问题。
更新: Trust Anchor not found for Android SSL Connection不是我问题的答案。它不包含有关在 Android 11 上使用 SelfTrusted 证书的信息。

最佳答案

Is it bug inside PdfViewerActivity or I have done something wrong?


两者都不。 Intent 可能会启动许多可能的 PDF 查看器应用程序。 .它们都不是您的应用程序,因此它们都不受您的网络安全配置的影响。在较新版本的 Android 上,默认情况下会忽略用户安装的证书。
您需要自己下载 PDF 文件,然后使用 FileProvider及其 getUriForFile()获取 Uri 的方法与您的 Intent 一起使用.
或者,您可以切换服务器以使用常规 SSL 证书(例如 Let's Encrypt)而不是自签名证书,如果这对您的情况是可行的。

关于android - 预装的 PdfViewerActivity 不适用于 SelfSigned 可信用户证书 Android 11 版本 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65507490/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com