html - cURL post data to click a button -
i looking use curl post data click button webpage need update regularly.
i tried following curl command doesn't seem click button:
curl -x post 'url_in_here' --verbose --user-agent $user_agent --cookie $cookies --cookie-jar $cookies --data "eventsource=update_"
the form details:
<form name="mainform" method="post" enctype="multipart/form-data" action="default.html"> <input type="hidden" name="eventsource"/>
and button:
<input type="button" onclick="return do_submit('update_');" name="update_" value="update">
any appreciated
Comments
Post a Comment