所以我有hostgator来主持domain.com和hostinger来主持test.com。在这些网站中,我运行着完全相同的脚本。该脚本的作用是,它登录到外部网站example.com,获取登录 cookie 并存储它。这个饼干可以用几个月!然后转到example.com/need-to-be-logged-in-to-view-this-page并获取其内容。
但是,我面临一个问题。我在两家托管公司上都有完全相同的代码。它在hostgator上完美运行。但是,在托管商上,它登录并获取 cookie,但 cookie 仅在登录时起作用一次。
然后我在 hostgator 上生成了 cookie 并将该 cookie 复制到托管商,它运行良好。所以我想知道,cURL 中是否有某种设置或主机可能已启用而主机可能未启用的某些默认设置,这使得主机上生成的 cookie 仅在登录时持续那一秒钟。
function get_login_cookie($ch, $headerLine) {
if (strncmp($headerLine, "set-cookie: coolCookie=", 20) == 0) {
$endPos = strpos($headerLine, ";");
$coolCookie = substr($headerLine, 20, ($endPos - 20));
file_put_contents("cookie.txt", $coolCookie);
}
return strlen($headerLine);
}
function login($username, $password) {
$fields = [
"username" => $username,
"password" => $password
];
$fields_string = http_build_query($fields);
$ch = curl_init("https://example.com/login");
curl_setopt($ch, CURLOPT_HEADERFUNCTION, "get_login_cookie");
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_exec($ch);
}
所以我尝试$headerLiner从get_login_cookie()函数打印。它们非常不同。Hostinger 和 hostgator 如何使用完全相同的代码没有相同的响应。
当我打印出来时在主机上 $headerLiner
HTTP/2 201
server: nginx/1.15.6
date: Sun, 21 Jul 2019 23:59:04 GMT
content-type: application/json; charset=UTF-8
content-length: 479
set-cookie: coolCookie=THIS_IS_THE_COOKIE; Domain=.example.com; Path=/; Expires=Sun, 28-Jul-19 23:59:04 UTC; HttpOnly
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
pragma: no-cache
vary: Accept,Cookie,Authorization,X-EXAMPLE-Sauce
location: https://api.example.com/login/8gybiuf8gybundfguino
慕虎7371278