美文网首页
头条SDK数据抓取

头条SDK数据抓取

作者: WilburLi | 来源:发表于2021-10-25 15:47 被阅读0次

    Charles 使用在这里就不复写了,之前文章有 主要介绍如何在安卓端加入证书

    CA证书是配置在服务器上的ca证书
    network_security_config.xml内容如下:

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
    
        <base-config>
            <trust-anchors>
                <certificates src="@raw/dev_ca_file"/>
                <certificates src="system"/>
            </trust-anchors>
        </base-config>
    

    </network-security-config>
    在AndroidMinifest.xml文件中配置

    <application
            android:name="xxx"
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme"
            android:networkSecurityConfig="@xml/network_security_config">
    

    对于服务器自定义https证书的话,此方法解决还是不错的。

    相关文章

      网友评论

          本文标题:头条SDK数据抓取

          本文链接:https://www.haomeiwen.com/subject/hdzjaltx.html