Skip to content
Advertisement

JAVASCRIPT JSON.parse() return Unexpected end of JSON input

I have a response from a service, using https

JavaScript

I need parse this response but… I know the final result should be(I get this with postman)…

JavaScript

When I run JSON.parse(data)

I get this errror

“errorType”: “SyntaxError”, “errorMessage”: “Unexpected end of JSON input”, “trace”: [ “SyntaxError: Unexpected end of JSON input”, ” at JSON.parse ()”, ” at IncomingMessage. (/var/task/index.js:47:23)”, ” at IncomingMessage.emit (events.js:315:20)”, ” at IncomingMessage.EventEmitter.emit (domain.js:467:12)”, ” at IncomingMessage.Readable.read (internal/streams/readable.js:519:10)”, ” at flow (internal/streams/readable.js:992:34)”, ” at resume_ (internal/streams/readable.js:973:3)”, ” at processTicksAndRejections (internal/process/task_queues.js:80:21)” ]

I think the “data array” field is the problem and I don’t know how to solve it.

When I receive a response with empty data:[], everything works fine.

Advertisement

Answer

Hmmmm… The answer is easy…

Lets Start:::::

First, looks like you get a lot of data from your service…

On response.on(“data”

Data is not complete at first, so, .on(“data” “repeat himself” from init to end, then ur data is complete…

code

JavaScript

then… in your .on(“end”

JavaScript

That’s all folks.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement