-
Notifications
You must be signed in to change notification settings - Fork 46
parse body only when content-type is 'application/json' #15
Conversation
@janhuddel thanks for that. Our application also experienced this bug occasionally. I did not do anything about it since our docker container automatically restarts when that happens. Maybe someone can confirm your fix or you can post an update when you did some long-term testing. |
@janhuddel Good catch. What does the response say when this error is thrown? Is there any other times where a non-json-body is ever thrown? |
@karbassi I don't know the body of the response. The only message I have seen is this one: But there is another point in this context: if the refresh-process fails at this point the api is unusable. if I have understood correctly, you are updating the token only via the timeout function. There is no retry. Would not it be safer if you check the token before each request? |
@janhuddel checking the token after (or before) each request would add additional process time for the request which isn't needed. If you print out the |
Hm, checking the Yes, the body seems to be html. But I can't reproduce the error :( I've added a console.log(body) in the method. Next time when I get this error I will post the message here. |
@janhuddel if you want to create another PR for checking As for the error, let's see what comes back and update the code accordingly. |
Hi. the fix for checking Back to topic: I will have have a look at the console the next days. If I get more info about the problem while token-refresh I will inform you. |
Hi, today I caught folling error in handleRequestError: 502 Bad Gatewaynginx , response.statusCode=502, content-type=text/html ` I also got errors like theese (ok, because valid json): And this is the 3rd form of errors here: The response-object in the 3rd error-case is undefined (like the body). It seems the netatmo-server has some outtakes sometimes... Greetings |
@janhuddel Is this still an issue? |
Yes. I can see many non-json responses from netatmo in the log. It would be great if you merge this PR into your master. |
I have another fix for you. Problem: under certain circumstances the authenticate_refresh-function received an non-json-body. In that case the JSON.parse in handleRequestError throws an exception which meant that my program (node-red) was terminated.
Before parsing the body I check the content-type of the response-header. JSON.parse will only called when content-type is 'application/json'. I hope that will fix my problem (I can't test it really good because this problem occurs very rarely).