这两天模拟浏览器提交登录表单,提交完成后, The URL has movedhere 。。
每次都需要点击连接后才打开登录后的主页。这并不是我想要的。
又看了一遍说明,看到参数-L
如下:-L/--location Follow Location: hints (H)
--location-trusted Follow Location: and send auth to other hosts (H)
有点冲动,感觉这就是问题的关键 :
curl --output "./rr.html" --dump-header "d_cookie01" --cookie-jar "c_cookie01" --create-dirs --location --data "email=test&password=test&autoLogin=ture&origURL=&domain=renren.com&formName=&method=&isplogin=true&submit=登录" http://www.renren.com/PLogin.do
wowowo登录后的主页下载下来了!!
仔细查看d_cookie01(包含从c_cookie01的内容,但--cookie-jar 产生的更简洁)有这么一条
Location:http://www.renren.com/callback.do?t=9d5201d04d44156fb070037e9493f5fd3&origURL=http%3A%2F%2Fwww.renren.com%2FHome.do&needNotify=false
原来每次提交登录表单后还需要跳转的,而-L 则是跟随跳转链接的。
我们也可以分成两步去做:
1.先提交表单,保存返回来的cookie
curl --output "./rr.html" --dump-header "d_cookie01" --data"email=test&password=test&autoLogin=ture&origURL=&domain=renren.com&formName=&method=&isplogin=true&submit=登录" http://www.renren.com/PLogin.do2.在d_cookie01中找到location,然后把cookie和location一起提交
curl --output "./rr.html" --dump-header "d_cookie01" --location http://www.renren.com/callback.do?t=9d5201d04d44156fb070037e9493f5fd3&origURL=http%3A%2F%2Fwww.renren.com%2FHome.do&needNotify=false
OK,就拿到了登录后的主页。