如果需要在curl请求中设置用户标头字符串,则可以使用该-H
选项来设置用户代理,例如:
curl -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36" http://stackoverflow.com/questions/28760694/how-to-use-curl-to-get-a-get-request-exactly-same-as-using-chrome
使用像Charles Proxy这样的代理工具,确实可以使您所需要的工作变得简短。这是我的工作,以该SO页为例(截至2015年7月,使用Charles 3.10版):
- 使Charles Proxy运行
- 使用浏览器发出Web请求
- 在Charles Proxy中找到所需的请求
- 在Charles Proxy中按要求右键单击
- 选择“复制cURL请求”
现在,您有了一个cURL请求,您可以在一个终端中运行该请求,该请求将反映您的浏览器发出的请求。这是我对此页面的要求(删除了Cookie标头):
curl -H "Host: stackoverflow.com" -H "Cache-Control: max-age=0" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36" -H "HTTPS: 1" -H "DNT: 1" -H "Referer: https://www.google.com/" -H "Accept-Language: en-US,en;q=0.8,en-GB;q=0.6,es;q=0.4" -H "If-Modified-Since: Thu, 23 Jul 2015 20:31:28 GMT" --compressed http://stackoverflow.com/questions/28760694/how-to-use-curl-to-get-a-get-request-exactly-same-as-using-chrome