Show sent POST Values with Fiddler..How do i do that?

前端 未结 3 1075
逝去的感伤
逝去的感伤 2021-01-01 08:51

I make some requests to a site and i want to see, what kind of variables has been sent to the server..

May be its possible with fiddler but i can\'t fig

相关标签:
3条回答
  • 2021-01-01 09:37

    POST data can be seen in the Inspectors -> Raw window which will display the whole request along with POST data and headers.

    EDIT: Yep... The Inspectors -> WebForms dialog would be another way however I usually don't make much use of it... Don't know why.

    0 讨论(0)
  • 2021-01-01 09:38

    It works for me. Just click on the request in the Web Sessions pane, Then click WebForms tab within the Inspectors tab on the right.

    0 讨论(0)
  • 2021-01-01 09:46

    You can do this in Fiddler using the following steps.

    • Locate the request in fiddler that relates to the post - you should be able to see the URL you expect in the URL column.

    • Select that line and the detailed view will open. There is a WebForms tab (inside "Inspectors") that displays the POST data in a neat table. You can also see it in the Raw tab, but it isn't nicely formatted like the WebForms tab.

    I have made a screenshot to help you:

    Fiddler POST values

    0 讨论(0)
提交回复
热议问题