Questions tagged [node-request]

Manage HTTP requests with a node.js NPM package.

Issue with GitHub API: The "Get contents" function is consistently returning a 404 error even for valid paths

I've recently started using probot, which can be found at Currently, I am in the process of developing a GitHub application that is designed to analyze a specific .json file within a repository for any changes to date strings. To achieve this, I have ...

Node.js maintains a duplicate of a global variable within the local scope

I am facing a challenge with my Node.js application that utilizes the request library to retrieve multiple URLs. The code structure looks similar to this: for(var i = 0; i < docs.length; i++){ var URL = docs[i].url; request(URL, functi ...

Looking to access nasdaq.com using both Python and Node.js

Having an issue with a get request for nasdaq.com. Attempting to scrape data with nodejs, but only receiving 'ECONNRESET' after trying multiple configurations. Python, on the other hand, works flawlessly. Currently using a workaround by fetching ...

Sending a GET request within a POST request in Node.js to retrieve and return data

I am having trouble passing the get request answer to the post request. Can someone assist me, please? var app = require('express')(); var http = require('http').Server(app); var bodyParser = require('body-parser'); var reque ...