dongxun3777 2016-07-15 16:20
浏览 79
已采纳

如何使用PHP Gouttee发送自定义标头

I am trying to scrape a site that actually block Bots.

I have this code in PHP cURL to get away with blockage.

$headers = array(
    'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
    'Accept-Encoding: zip, deflate, sdch'
    , 'Accept-Language:en-US,en;q=0.8'
    , 'Cache-Control:max-age=0',
    'User-Agent:' . $user_agents[array_rand($user_agents)]
);
curl_setopt($curl_init, CURLOPT_URL, $url);
curl_setopt($curl_init, CURLOPT_HTTPHEADER, $headers);
$output = curl_exec($curl_init);

It works well.

But I am using PHP Goutte, I want to generate same request using this library

$headers2 = array(
    'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
    'Accept-Encoding' => 'zip, deflate, sdch'
    , 'Accept-Language' => 'en-US,en;q=0.8'
    , 'Cache-Control' => 'max-age=0',
    'User-Agent' => $user_agents[array_rand($user_agents)]
);
$client = new Client();

foreach ($headers2 as $key => $v) {
    $client->setHeader($key, $v);
}
$resp = $client->request('GET', $url);
echo $resp->html();

But using this code I get blocked from the site I am scraping.

I want to know how can I use Gouttee to properly use Headers?

  • 写回答

1条回答 默认 最新

  • dongya2029 2016-07-15 16:59
    关注

    Can you try to check result of Goutte

    $status_code = $client->getResponse()->getStatus();
    echo $status_code;
    

    This is source code I had success with Guzzle In index.php

    <?php
        ini_set('display_errors', 1);
    ?>
    <html>
    <head><meta charset="utf-8" /></head>
    <?php
        $begin = microtime(true);
        require 'vendor/autoload.php';
        require 'helpers/helper.php';
        $client = new GuzzleHttp\Client([
            'base_uri' => 'http://www.yellowpages.com.au',
            'cookies' => true,
            'headers' =>  [
                'Accept'          => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
                'Accept-Encoding' => 'zip, deflate, sdch', 
                'Accept-Language' => 'en-US,en;q=0.8', 
                'Cache-Control'   => 'max-age=0',
                'User-Agent'      => 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'
            ]
        ]);
        $helper = new Helper($client);
        $mostViewed = $helper->getPageTest();
    ?>
    <html>
    

    In helper.php file

    <?php
    use GuzzleHttp\ClientInterface;
    use Symfony\Component\DomCrawler\Crawler;
    class Helper{
        protected $client;
        protected $totalPages;
        public function __construct(ClientInterface $client){
            $this->client       = $client;
            $this->totalPages   = 3;
        }
        public function query()
        {
            $queries = array(
                'clue'  => 'Builders',
                'locationClue'  => 'Sydney%2C+2000',
                'mappable' => 'true',
                'selectedViewMode' => 'list'
            );
            // print_r($queries);
            return $this->client->get('search/listings', array('query' => $queries));
        }
        public function getPageTest()
        {
            $responses = $this->query();
            $html = $responses->getBody()->getContents();
            echo $html;
            exit();
        }
    }
    ?>
    

    And result I got

    enter image description here

    Hope this helpful!!!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建