我设法通过手动从firefox中提取cookie并在curl命令中使用它来获取使用站点管理员身份验证的网页的curl输出:
curl "example.com/firstexample" -H "Host: example.com" -H "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" -H "Accept-Language: en-US,en;q=0.5" --compressed -H "Content-Type: application/x-www-form-urlencoded" -H "X-Requested-With: XMLHttpRequest" -H "Referer: http://example.com" -H --cookie-jar cookies.txt --cookie cookies.txt -H "Connection: keep-alive"
但是,只要会话持续,卷曲就会起作用。一旦新会话开始,即cookie会话ID和其他内容发生变化 - 卷曲不再明显起作用。
有没有办法通过curl获得后续的cookies / session id以便无限地继续。
答案 0 :(得分:0)
在手册页中查看--cookie
上的--cookie-jar
和curl
选项。他们应该做你需要的。