gpt4 book ai didi

python - 使用请求模块在 header 中获取 Set-Cookie

转载 作者:行者123 更新时间:2023-12-05 07:52:08 26 4
gpt4 key购买 nike

当我使用 PHP 获取 cookie 时,它​​返回:

session_id=abih14s7l4lgo3splta7f6bd14; cccaa78fa9e13785130119a4924db0f4=96637ae... (more)

但是当我使用 Python 时,它返回:

session_id=abih14s7l4lgo3splta7f6bd14

...剩下的 cookie 都丢失了。

我的代码 Python:

res_post = requests.post(LOGIN_URL, data = {mydata})
cookies = dict(res_post.cookies.items())

最佳答案

看起来您正在使用 requests 库。 response.cookies 已经是一个字典,因此无需再次转换。

您应该像这样访问响应中的 cookie:

response = requests.post(LOGIN_URL, data={mydata})
print response.cookies['session_id']

查看此处了解更多详情:http://docs.python-requests.org/en/latest/user/quickstart/#cookies

关于python - 使用请求模块在 header 中获取 Set-Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34113005/

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