vote up 5 vote down star
1

I'm attempting to debug my web application with FireFox3. However, when a JSON feed comes from my application, Firefox wants to open up the "application/json" in a new program. Is there a way to configure FireFox3 to handle JSON like regular text files and open up the JSON in the current tab?

Thanks.

flag

74% accept rate

7 Answers

vote up 4 vote down check

Try the Open in browser extension.

link|flag
vote up 4 vote down

The JSONView firefox extension is really nice.

It formats, highlights, etc...

The only drawback is that it requires the mime type to be set to "application/json". But it is not realy a drawback for you, because based on your "answer"(which shouldn't be an answer) your problem is that the mime type is "application/json" and as a result firefox doesn't know what to do with it and downloads it instead of displaying.

JSONView

link|flag
Thanks! Though I think many of us will prefer an english link instead: addons.mozilla.org/en-US/firefox/… – Peter Wagenet Nov 5 at 2:34
Thanks for pointing that out! Corrected now. – Kalmi Nov 5 at 12:05
vote up 2 vote down

I would look into the preferences > applications list. What application is targeted for "application/*" ?

Apart from that, are you using FireBug? Absolutely essential, since you can look at the headers and response content within the network view.

link|flag
vote up 2 vote down

Consider using a MIME type of text/javascript instead of application/json

link|flag
I like this solution the best, since it doesn't require installing another extension. Of course, if you don't have control over the content type, then the extension sounds like the way to go. – pkaeding Mar 23 at 14:45
vote up 1 vote down

What is the content-type of the Json feed. Sounds like it may be some sort of application instead of text.

Change the content type of the feed to something that is text based and FireFox will no longer try to open it in another program.

link|flag
vote up 0 vote down

Hmm, I thought of that... it's sent from Rails. Rails must be setting the mime type to "application/json" However, is there a way to force Firefox to accept it as text?

link|flag
You can force firefox to accept it by setting the application to read it, as stated by mfx, but it would be better to force Rails to send it as a different application type. – jW Sep 18 '08 at 17:55
vote up 0 vote down

I would just use Firebug - it'll let you drill down into a JSON object on its own, along with its other hundred useful features.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.