If i run the same request in postman it gives me a return in 9 minutes, with a 39mb of json data.
"node-fetch": "^2.6.7"
Same results with
node v16.6.2
node v17.9.1
const fetch = require('node-fetch')
/*
This code is inside an async method and inside a try catch block...
I dont put the rest of code because it dont pass of this line.
This await fetch is executing for so long time and never ends.
*/
const response = await fetch(requestData.url, requestData.options)