我正在尝试抓取一个需要使用wget登录的网站,但是每次找到注销URL(https://example.com/logout/)时它都会停止。 我试过排除目录,但没有成功。 这是我的命令:
wget --content-disposition --header "Cookie: session_cookies" -k -m -r -E -p --level=inf --retry-connrefused -D site.com -X */logout/*,*/settings/* -o log.txt https://example.com/
我尝试使用-R选项而不是-X,但这没用。