Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails to parse JSON, doesn't give us the raw response. #675

Open
ponelat opened this issue Jun 10, 2015 · 10 comments
Open

Fails to parse JSON, doesn't give us the raw response. #675

ponelat opened this issue Jun 10, 2015 · 10 comments

Comments

@ponelat
Copy link

ponelat commented Jun 10, 2015

For particular reasons, the response from the server is a malformed JSON string, ie: it will fail to parse.
However we'd still like to show the raw body content but can't because superagent doesn't include that data.

Can we have the err callback included the raw response.

Round about here I think...
https://github.com/visionmedia/superagent/blob/master/lib/client.js#L466-L473

@darxtrix
Copy link

darxtrix commented Jul 8, 2015

Yeah, I am having the same problem. Actually superagent checks the Content-Type of the returned response. If the content is text itself but if the content type is wrong like application/json , it tries to parse it. If an error occurs during parsing, double callback error is thrown and res is not set.

@catc
Copy link

catc commented Jul 20, 2015

Same issue here. Response from API is plain text but the header is text/json which causes superagent to throw the double callback error.

@darxtrix
Copy link

There should be some option to get the raw response text in case the JSON parsing fails ?

@reicolina
Copy link
Contributor

I added a .rawResponse property to the err object if the parsing fails. The code is pending approval in pull request #716

@darxtrix
Copy link

darxtrix commented Aug 6, 2015

@reinaldo13 Great !

@FoghostCn
Copy link

I had the same problem, content-type is application/json but failed to parse,then it warned double callback!

reicolina added a commit to reicolina/superagent that referenced this issue Dec 6, 2015
- Added rawResponse property to error object on the server side
@anthonyhastings
Copy link

Same here; I'm purposefully sending back malformed JSON (as that's what numerous Google scripts do to stop people injecting the resource directly onto a apage in a script tag).

A way to either disable the auto-parsing, or, somehow get the response in the error would allow me to skirt around this problem.

@kornelski
Copy link
Contributor

#716 added rawResponse to the error. Does that solve your problem?

@anthonyhastings
Copy link

It'll certainly give a workaround for examining the error and seeing if it "really" is an error. Having some way to disable the auto-parsing sounds like it'd be pretty useful but perhaps the use cases for this functionality are too small.

Do you know when this PR will be included into a release or SuperAgent that could be pulled over NPM? When's your next release?

@kornelski
Copy link
Contributor

I'll be released soon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants