I’m experiencing a problem where I have a simple GET request in a third-part API and i’m executing it on Postman, but I need to translate it to Node.JS.
Executing via Postman, this request returns status 200 - Ok, exactly what I need, but if I generate the Postman code snippet in Node.JS and run a script, the request returns 403 - Forbidden where the data is : “Access Denied”
Anyone has idea why it works on Postman but doesn’t work on Node.JS
Ps: If i run on Kotlin, it works too