我想使用 wget 下载 Google Trends csv 数据,但我不熟悉使用 wget。一个示例 URL 是:
用网络浏览器打开它,我检索到预期的文件。要使用 wget 执行此操作,我尝试了以下命令:
wget "http://www.google.com/insights/search/overviewReport?cat=71&geo=US&q=apple&date&cmpt=q&content=1&export=1" -O report.csv
结果如下:
<html><head><title>Redirecting</title>
<meta http-equiv="refresh" content="0; url='http://www.google.com/insights/search#content=1&cat=71&geo=US&q=apple&date&cmpt=q'"></head>
<body bgcolor="#ffffff" text="#000000" link="#0000cc" vlink="#551a8b" alink="#ff0000"><script type="text/javascript" language="javascript">
location.replace("http://www.google.com/insights/search#content\x3d1\x26cat\x3d71\x26geo\x3dUS\x26q\x3dapple\x26date\x26cmpt\x3dq")
</script></body></html>
我的第一个猜测是,wget
它无法通过适当的身份验证访问 cookie。
有人吗?