http - what are the post parameter in this post request -
i have page can get request.
the response of request html page has button called search
when called button, post request fired , response appended page. in other words, clicking on button didn't give me new page adds new content page.
i tried use live http headers firefox extension read request in order see parameters being sent in post request. get
post /plugins/ad/buy.php?q=used+cars+dubai http/1.1 host: www.autodealer.ae user-agent: mozilla/5.0 (windows nt 6.1; wow64; rv:28.0) gecko/20100101 firefox/28.0 accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 accept-language: en-us,en;q=0.5 accept-encoding: gzip, deflate referer: http://www.autodealer.ae/plugins/ad/buy.php?q=used+cars+dubai cookie: phpsessid=f2072a947619ef2d61b552f38e163d02; __utma=154876456.960352407.1397595567.1397595567.1397598041.2; __utmc=154876456; __utmz=154876456.1397595567.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __gads=id=7a5bda3c29913b41:t=1397595570:s=alni_mzg2j44drk3d1j8cx4fpzwfhwizuw; __utmb=154876456.1.10.1397598041 connection: keep-alive content-type: application/x-www-form-urlencoded content-length: 131 vehcategory=all&make=all&model=&platename=&pricefrom=%3c500&priceto=all&city=all&sort=postdate&results_listing=1month&search=search i have read many questions on stackoverflow website , learned post parameters exit in request body. , in situation, content type application/x-www-form-urlencoded post parameters should query string
my question
where post parameters in above request? can see cookies
http parameters in query string.
http post have them inside content body - looks though are:
content-length: 131 vehcategory=all&make=all&model=&platename=&pricefrom=%3c500&priceto=all&city=all&sort=postdate&results_listing=1month&search=search
Comments
Post a Comment