6
I need something that simulates JSON responses for me. A while ago I had seen a site that did the following:
- You pass parameters through a URL, e.g.:
?nome=Wesley&idade=21
Received in the call the JSON object like this:
{ nome:"Wesley", idade : 21 }
But I can’t find it, which would be something that does something similar?
what you’re looking for is the site that does it? or how to turn that query into an object?
– Sergio