In Fiddler, I have a response body (application/json) that I convert into an Object using eval()
(if there is a better way please let me know) to perform some checks. Now I want to convert several parts (but not all parts) of the object back into a string and save them to seperate files. How would I do this in Jscript?
I have tried using the ToString()
method but it only returns [object Object]
. Any ideas?