Receiving the post response using curl
Posted
by Larry Battle
on Stack Overflow
See other posts from Stack Overflow
or by Larry Battle
Published on 2010-05-22T03:36:51Z
Indexed on
2010/05/22
3:40 UTC
Read the original article
Hit count: 224
curl
Hello,
I'm trying to make a script that will download search results from a HTTPS website using POST. So far, I'm able to download the web page before the submission but not the response page containing the search results. The problem seems to be that curl isn't waiting long enough for the response page to appear.
The website behaviors likes this.
Website appears-> input form data -> click submit -> progressing icon appears -> returns new web page with search results( new data but the url doesn't change )
My code: curl -d "postData" -k url
© Stack Overflow or respective owner