We had some problems when doing requests to an API. In the end we found out that it could be related to a new version of npm request (https://www.npmjs.com/package/request).
In your package.json you specify this:
"dependencies": {
"request": "*"
},
Maybe it would be more reliable if you set a static version instead of "*".
Regards
We had some problems when doing requests to an API. In the end we found out that it could be related to a new version of npm request (https://www.npmjs.com/package/request).
In your package.json you specify this:
"dependencies": {
"request": "*"
},
Maybe it would be more reliable if you set a static version instead of "*".
Regards