I'm trying to make an HTTP post on this website:
https://www.colorado.gov/revenueonline/_/#2
(click Verify a Sales Tax License in the bottom right)
using wget with the following command:
wget --post-data="VIEW__=CG_LicVer
&LASTFOCUSFIELD__=
&DOC_MORAL_ID__=0
&DvfmoUb__0_0_Fdr2ZH=7777777" \
-U "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" \
https://www.colorado.gov/revenueonline/_/#2
but it gets rejected with "ERROR 405: Method Not Allowed" which I'm assuming means they don't allow HTTP posts at all on the website. But the post code is right there!
<form name="DocumentForm" class="DocumentForm " action="." method="post" onsubmit="return false;">
Long story short how do I make a post or whatever this website is using if it isn't using http post or get to simply input a number and get back the next page's results?