关于android7.0以上https抓包问题,在charles都配置好的情况下依然提示unknow,解决方案如下
一、在res->xml下新建 network_security_config.xml 文件
network_security_config.xml 中的内容表示 系统的 和用户自己的证书均被信任
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true">
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>
二、在AndroidManifest application 中添加文章来源:https://www.toymoban.com/news/detail-596456.html
android:networkSecurityConfig="@xml/network_security_config"
然后就可以了
注意该装的证书是少不了的 电脑端、手机端都要装上文章来源地址https://www.toymoban.com/news/detail-596456.html
到了这里,关于android 7.0以上 https使用charles抓包 提示 unknow 解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!