黄聪:wordpress如何携带cookie模拟浏览器访问网站
Posted 黄聪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了黄聪:wordpress如何携带cookie模拟浏览器访问网站相关的知识,希望对你有一定的参考价值。
$args = array( ‘user-agent‘ => ‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/55.0.2883.87 Safari/537.36‘, ‘headers‘ => array( ‘Accept‘ => ‘text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8‘, ‘Accept-Encoding‘ => ‘gzip, deflate, sdch, br‘, ‘Accept-Language‘ => ‘zh-CN,zh;q=0.8‘, ‘Cookie‘ => ‘BAIDUID=7C229AEE7415C1B2C54D81B726120004:FG=1; FP_UID=0a5ab4bc6eed1452ba9252a639c1f3e8; Hm_lvt_6859ce5aaf00fb00387e6434e4fcc925=1504360195; Hm_lpvt_6859ce5aaf00fb00387e6434e4fcc925=1504360564‘, ) ); $response = wp_remote_get( $url, $args ); $html = $response[‘body‘]; //$html = iconv( "GB2312", "UTF-8//IGNORE", $html );
以上是关于黄聪:wordpress如何携带cookie模拟浏览器访问网站的主要内容,如果未能解决你的问题,请参考以下文章
黄聪:Wordpress二级域名共享用户cookie出现错误解决方案及WP的Cookie机制
黄聪:如何使用钩子定制WordPress添加媒体界面,去除不需要的元素