Top "Request" questions

A request is a message sent by a source to another object.

How do I get the redirected url from the nodejs request module?

I'm trying to follow through on a url that redirects me to another page using the nodejs request module. Combing …

node.js module request
DELETE using CURL with encoded URL

I’m trying to make a request using CURL like this: curl -X DELETE "https://myhost/context/path/users/OXYugGKg207…

url curl encoding request http-delete
Webpack - Critical dependency: the request of a dependency is an expression

I am getting three warning messages when importing request in a barebone webpack project. A minimal example to reproduce the …

webpack request ajv
Submit POST data from controller to another website in Rails

User submits a form with some basic data. The data is received and treated by an action in the controller …

ruby-on-rails ruby forms request form-submit
How to get full host name + port number in Application_Start of Global.aspx?

I tried Uri uri = HttpContext.Current.Request.Url; String host = uri.Scheme + Uri.SchemeDelimiter + uri.Host + ":" + uri.Port; and it …

c# asp.net url request hostname
Getting the array as GET query parameters in Python

I know in php I could just use $_GET['key1']['key2'] to retrieve GET data that is sent …

python list flask request werkzeug
Spring @RequestParam mapping Boolean based on 1 or 0 instead of true or false

Why is Spring 3.2 only mapping my Boolean based on that the requestparam is "0" or "1" ? @RequestParam(required= false, defaultValue = "false") Boolean …

spring request boolean http-request-parameters
Using curl with NTLM auth to make a post is failing

I can't seem to wrap my head around this. I'm trying to script automating an upload of a csv but …

http curl request ntlm
Proper request with async/await in Node.JS

In my program I make async call for my function from another API module: var info = await api.MyRequest(value); …

node.js rest asynchronous request async-await
Setting up proxy for HTTP client

I'm trying to setup the HTTP client so that it uses a proxy, however I cannot quite understand how to …

http proxy request go