gpt4 book ai didi

php - header 请求文件中未设置 Cookie

转载 作者:搜寻专家 更新时间:2023-10-31 21:24:13 24 4
gpt4 key购买 nike

目前我想访问需要 cookie 的 Url。没有 Cookie 它会重定向到其他 Url。我尝试在请求 header 中设置 Cookie,但只在响应 header 中获取 Cookie。不知道为什么会这样。

这是响应头:

Cache-Control:no-store, no-cache, must-revalidate, post-check=0,   pre-check=0
Content-Type:text/html; charset=UTF-8 Date Mon, 26 Sep 2016 11:52:59 GMT Expires
Thu, 19 Nov 1981 08:52:00 GMT
Location
quotev3.php?sub=compare
Pragma
no-cache
Server
nginx
Set-Cookie
PHPSESSID=e2dnbfjvhi29e7qnkm0jbnekc4; path=/
country=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0
X-Firefox-Spdy
h2

请求头

   Accept   
*/*
Accept-Encoding
gzip, deflate, br
Accept-Language
en-US,en;q=0.5
Connection
keep-alive
Content-Length
119
Content-Type
application/x-www-form-urlencoded
Host
www.parcelmonkey.co.uk
Origin
null
User-Agent
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0

我在头文件中设置了一个Cookie。

    $cookie=$_COOKIE['PHPSESSID'];
ob_start();
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
header('Access-Control-Allow-Headers: Origin, Content-Type, Accept, Authorization, X-Request-With');
header('Access-Control-Allow-Credentials: true');
header('Cookie:'.$cookie);

非常感谢任何解决方案。谢谢

最佳答案

您需要指定 cookie 的键,而不仅仅是它的值。

此外,命令是 Set-Cookie 而不是 Cookie

使用setcookie函数,或者像这样的header:

setcookie('PHPSESSID', $cookie);

header("Set-Cookie: PHPSESSID={$cookie};");

关于php - header 请求文件中未设置 Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39702620/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com