JSON Viewer:JSON parser for Fiddler
Fiddler is one of the few tools by Microsoft which are very helpful to solve things out. JSON is quite handy data format which is currently being used as an alternate of XML but unlike XML, there is no built-in tool in Browsers which can show JSON data in presentable format.
JSON VIEWER is the tool which can be used as stand alone or as a part of Fiddler to debug JSON feeds. This tool saved my life when I was trying to parson JSON feeds return from YouTUbe's feed.
(Click images for larger View)
After plugging into Fiddler, you can see something like that:

when you try to format the JSON Data, you get the error appears above,don't worry, just hit "strip to {}" and click Format again, now you will get following clean view. te reason you get above error that unwanted data is also returned with formatted json feed which makes entire response invalid.

You can view Individual entries by navigating in Viewer Tab.

As you can see, how easy to parse JSONified data and parse within your code. In order to use Fiddler in Firefox, just set your proxy details to 127.0.0.1 and port 8888
JSON Related Posts