简体   繁体   English

PHP Curl 无法加载页面

[英]PHP Curl can't load page

I am trying to open a specific page ( https://www.yellowpages.com.au ) I have tried simplehtmldom I have also tried Curl I have tried with different headers and added a certificate I can open other pages, just not this one and would like to know how the site is stopping my access and what I can do about it.我正在尝试打开特定页面( https://www.yellowpages.com.au ) 我尝试过 simplehtmldom 我也尝试过 Curl 我尝试过使用不同的标题并添加了一个证书 我可以打开其他页面,只是不是这个页面并想知道该网站如何阻止我的访问以及我可以做些什么。

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.A.B.C Safari/525.13");


$certificate = "cacert-2019-01-23.pem";
curl_setopt($ch, CURLOPT_CAINFO, $certificate);
curl_setopt($ch, CURLOPT_CAPATH, $certificate);


$data = curl_exec($ch);
curl_close($ch);
echo $data;

Thanks谢谢

the url https://www.yellowpages.com.au does not serve a page, it just redirects you (via a HTTP Location Redirect ) to another url (to be specific: Location: http://www.yellowpages.com.au/dataprotection?path=/ ) that actually serves a page.网址https://www.yellowpages.com.au不提供页面,它只是将您(通过HTTP 位置重定向重定向到另一个网址(具体来说: Location: http://www.yellowpages.com.au/dataprotection?path=/ ) 实际服务于一个页面。 in order to load that url with curl, you must tell curl to follow HTTP Location redirects , that can be done with CURLOPT_FOLLOWLOCATION ,为了使用 curl 加载该 url,您必须告诉 curl 遵循HTTP Location redirects ,这可以通过CURLOPT_FOLLOWLOCATION完成,

in addition to that, yellowpages.com.au blocks requests that lack a User-Agent header, libcurl sets no default User-Agent header, you can set that with the CURLOPT_USERAGENT option , here is a working example:除此之外,yellowpages.com.au 会阻止缺少 User-Agent 标头的请求,libcurl 没有设置默认的 User-Agent 标头,您可以使用CURLOPT_USERAGENT 选项进行设置,这是一个工作示例:

<?php
$ch=curl_init('https://www.yellowpages.com.au');
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true);
curl_setopt($ch,CURLOPT_USERAGENT,'libcurl/'.(curl_version()['version']).' PHP/'.PHP_VERSION);
curl_exec($ch);
curl_close($ch);

outputs:输出:

$ php foo4.php

<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>

        <title>Yellow Pages&reg; | Data Protection</title>

    <link rel="shortcut icon" href="/favicon.ico?v=2" />

    <!--[if (lt IE 9)&!(IEMobile)]><script src="/assets/ie/respond.sensis-9575467dfbc008e5b0d486dc4f481624.js" type="text/javascript" ></script><![endif]-->
    <!--[if (lt IE 10)&!(IEMobile)]><script src="/assets/ie/custom-event-ie9.js" type="text/javascript" ></script><![endif]-->
    <!--[if (lt IE 10)&!(IEMobile)]><link rel="stylesheet" href="/assets/ie/gradient-hacks-ie89-12453d23f1fec3d9d46e56cc6e023576.css"/><![endif]-->

        <script src="https://www.google.com/recaptcha/api.js?" async defer></script>
        <meta name="ROBOTS" content="NOINDEX, NOFOLLOW"/>

</head>
<body style="border-width: 0;
                background-color: #EDEDED;
                font-size: 85%;
                line-height: 1.3;
                margin: 0;
                font-family: Helvetica, sans-serif;" id="">


        <div style="padding: 10px 15px;
                    height: 70px;
                    min-height: 45px;
                    background-color: #ffce00;
                    background-image: linear-gradient(to right, #ffce00, #fedb55, #ffce00);
                    box-shadow: inset 0px -5px 7px -5px rgba(0, 0, 0, 0.35);">
            <div style="position: relative;
                        max-width: 1240px;
                        margin: 0 auto;">
                <a href="/">

(capped) (封顶)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM