gpt4 book ai didi

shell - 从 CURL 保存的 cookie 文件中读取 session ID

转载 作者:行者123 更新时间:2023-12-02 21:23:51 32 4
gpt4 key购买 nike

我已使用 CURL 命令将 cookie 文件保存到磁盘。现在我想从 cookie 文件中读取 session ID,并将其发送到另一个 CURL 请求。我该怎么办?

cookie 文件如下所示。

# Netscape HTTP Cookie File
# http://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.

#HttpOnly_localhost FALSE /HazelcastSessClus/ FALSE 0 JSESSIONID C08191738299B771AB28EB49A18124EC

最佳答案

session ID 是 Cookie 文件中的最后一个字符串。我暂时做了什么:

SESSION_ID=$(cat cookies.txt | tr -d '\n' | awk -F/ '{print $NF}')
SESSION_ID=$(echo "$SESSION_ID" | awk '{ print $(NF) }')

我知道这不是一个正确的方法。

关于shell - 从 CURL 保存的 cookie 文件中读取 session ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25967506/

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