tags:

views:

30

answers:

1

Hi,

I need a tool which generates random JSON objects. I want to use this tool to do testing on my HTTP POST requests and use the random JSON object in it.

Any suggestions?

A: 

i would recommend just building a script in PHP...its really easy to convert arrays to json, so you could just make a randomized array and do: echo json_encode($array);

ocdcoder