使用必需的HTTP Referer和User-agent时无响应

时间:2014-05-06 19:01:20

标签: curl http-headers user-agent http-referer lynx

有人可以看到我的卷曲请求有什么问题。提前致谢

要求:

  1. 要访问提交简历的说明,您必须从此Web服务获取“/anvato-resumes/instructions.txt”资源: https://s3.amazonaws.com

  2. 您必须通过使用Lynx网络浏览器关注来自http://www.anvato.com的资源的链接,使其看起来好像您正在发送GET请求一样。否则,Web服务将为您提供“拒绝访问”错误。

  3. 解决方案:

    curl -X GET --header "Referer: www.anvato.com" --header "User-Agent: Lynx/2.8.8dev.3 libwww-FM/2.14 SSL-MM/1.4.1" https://s3.amazonaws.com/anvato-resumes/instructions.txt
    

    响应:

    (XML)拒绝访问

1 个答案:

答案 0 :(得分:1)

以下作品!

curl  -A "Lynx/2.8.8dev.3 libwww-FM/2.14 SSL-MM/1.4.1" -e "http://www.anvato.com"  -X GET https://s3.amazonaws.com/anvato-resumes/instructions.txt