我尝试使用curl复制的浏览器请求出现问题。我目前正在做一个大学项目,被困住了。
我试图将浏览器请求复制到以下URL:http://vm.tiktok.com/e9VDx8/当我在浏览器中访问该页面时,我被重定向到包含视频和其他内容的页面。当我尝试使用CURL时,系统显示404页面未找到错误。我的卷曲请求如下所示。
$ch = curl_init();
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_USERAGENT, $USER_AGENT);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt( $ch, CURLOPT_COOKIEJAR, realpath('./cookies.txt') );
curl_setopt( $ch, CURLOPT_COOKIEFILE, realpath('./cookies.txt') );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
我在浏览器中查看了原始URL的标题,并尝试将其复制粘贴到curl中,但仍然得到404页面。如果我从chrome开发人员工具中将浏览器请求复制为curl请求并在终端中运行,则效果很好。
curl "http://vm.tiktok.com/e9VDx8/" -H "Connection: keep-alive" -H "Upgrade-Insecure-Requests: 1" -H "User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8" -H "Accept-Encoding: gzip, deflate" -H "Accept-Language: en-US,en;q=0.9,fr-CA;q=0.8,fr;q=0.7" -H "Cookie: _ga=GA1.2.213365735.1552156986; _gid=GA1.2.1717226934.1552319684; tt_webid=6667489497775638018" --compressed
任何帮助将不胜感激。我很沮丧。
答案 0 :(得分:0)
事实证明,我在发布帮助后几分钟就发现了此问题。在脚本的前面,我截断了URL以确保没有无效字符等。这样做时,我将URL更改为小写,这引起了问题,因为URL区分大小写。