I want to call an url using curl and wget
I tried wget --save-cookies cookies.txt --post-data 'user=foo&password=bar' http://server.com/Login
wget --load-cookies cookies.txt -p http://server.com/interesting/article.jsp
But the login form is not accepting post data.Any other way i can try this?
userandpassword? Look at the source for the login form and include the<form ...>and everything up to the</form>in your question. Or just make sure to emulate those parameters. – freiheit Aug 27 '11 at 22:28