4

Is it possible to send AJAX data with params, that aren't in the URL? I have a script that gets information from a form, and the server uses POST and not GET.

I noticed the possibility in FireBug to send the params only in the URL.

In case it's impossible, is there another program that might help me with that?

Yossi
  • 1,002
  • 2
  • 13
  • 19

4 Answers4

3

https://addons.mozilla.org/en-US/firefox/addon/3899

Simple and FireFoxy..

Yossi
  • 1,002
  • 2
  • 13
  • 19
1

Have also a look at Fiddler.

kgiannakakis
  • 96,871
  • 26
  • 155
  • 191
1

For that I use LiveHTTPHeader addon. It offers you nice record/replay facilities and replay also for HTTP POST style. You can also modify the payload.

manuel aldana
  • 13,184
  • 8
  • 40
  • 49
0

It's possible. In XMLHttpRequest.send(); you can put POST data

oneat
  • 9,780
  • 15
  • 47
  • 66