Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm trying to 'fake' an HTTP POST request to my online SMS service, so I don't have to load their page everytime I want to send SMS's. It's quite a simple page, with a file uploaded input and some sundry fields. I suspect a server side PHP page is rendering the web page I see, as well has handling 'postbacks'. To find out how to structure the FormData of the POST request, I would like to view such a request in Firebug, but the current view shows the POST data as:

Content-Type: multipart/form-data; boundary=---------------------------231991966824484
Content-Length: 1493

-----------------------------231991966824484
Content-Disposition: form-data; name="rm"

memberssmsbatch
-----------------------------231991966824484
Content-Disposition: form-data; name="Action"

Send

I'm sure this isn't what the actual body of the request looks like. How can I view that:
Posted

1 solution

Try using Fiddler[^].
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900