我使用下面的命令在 bash 中使用 CURL 下载 cookie。如何使用此文件(cookies.txt)访问该页面?
curl -u username --cookie cookies.txt --cookie-jar cookies.txt https://example.com
答案1
你的curl
命令是正确的。使用该--cookie cookies.txt
选项,您可以重复使用之前使用该选项保存的 cookie --cookie-jar cookies.txt
。
和wget
:
wget --load-cookies cookies.txt --save-cookies cookies.txt ...