PHP cURL使用正确的POST数据返回意外结果

时间:2013-11-03 11:46:34

标签: php curl

我找到了一个提供截屏服务的网站http://ctrlq.org/screenshots/。我想从许多URL批量请求屏幕截图,所以我编写了一个PHP cURL脚本来以编程方式执行此操作。

为了从此Web服务获取屏幕捕获图像,它需要具有安全代码和需要捕获的网站URL的POST数据。

以下代码是执行上述两项操作的cURL脚本

$url = 'http://ctrlq.org/screenshots/';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($ch);
preg_match('/<input type="hidden" name="labnol" value="(.*)" \/>/', $content, $match);
$postData = array(
    'labnol' => $match[1],
    'url' => 'http://www.google.com'
);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);
curl_exec($ch);
$content2 = curl_exec($ch);
curl_close($ch);

echo $content2;

不幸的是,我得到了源代码:

Sorry but the tool couldn't capture that web page. Please <a href='/screenshots/'>try another URL</a>.

虽然成功代码应包含屏幕截图图像链接:

<div class="animate" id="progressmeter">
                          <div class="progress progress-striped active">
                            <div class="bar" style="width: 0%;"></div>
                          </div>
                        </div>
                        <script>
                            var progress = setInterval(function() {
                            var $bar = $('.bar');
                            if ($bar.width()==300) {
                                clearInterval(progress);
                                $('.progress').removeClass('active');
                                document.getElementById('progressmeter').innerHTML = "<a class='btn btn-success btn-large' href='http://ctrlq.org/files/screenshots/0e82990496751f51e3329094b26bd4a1.png' target='_blank'><i class='icon-download icon-white'></i> Download Image</a>  <a class='btn-large btn btn-info' href='/screenshots/'><i class='icon-camera icon-white'></i> New Capture</a>";
                            } else {
                                $bar.width($bar.width()+30);
                            }
                            $bar.text($bar.width()/3 + 10 +  "%");
                            }, 1500);
                        </script>

我想问一下这个cURL脚本有什么错误吗?感谢。

1 个答案:

答案 0 :(得分:1)

您忘记处理会话Cookie。 使用

curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE);
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookiefile");
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookiefile");

一开始。