Top "Request" questions

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

How to set Content-Length when sending POST request in NodeJS?

var https = require('https'); var p = '/api/username/FA/AA?ZOHO_ACTION=EXPORT&ZOHO_OUTPUT_FORMAT=JSON&…

javascript post node.js request content-length
Postman - How to pass a global variable into JSON body

I'm working with Postman right now and I have to do a lot of requests, and in the body I'm …

json rest request postman
RestTemplate GET request with request params

I have to call a REST webservice and I am planning to use RestTemplate. I looked at examples on how …

parameters get request rest-client resttemplate
NSURLRequest : Post data and read the posted page

In iOS (current target 5.0, Base SDK 5.1) how can I send a post request to a server, and then read the …

iphone objective-c ios request nsurlrequest
Tutorial for using requests_oauth2

I am trying to use the requests-oauth library for Python to make a request to Pocket. Unfortunately the description to …

python request oauth-2.0 pocket
PostMethod setRequestBody(String) deprecated - why?

I am using Apache Commons HttpClient PostMethod 3.1. In the PostMethod class there are also three methods for setting POST method's …

java request apache-commons-httpclient
How to maintain a request session in NodeJS

I'm trying to use NodeJS to scrape a website that requires a login by POST. Then once I'm logged in …

javascript node.js session request
NodeJS Request how to send multipart/form-data POST request

I'm trying to send a POST request to an API with an image in the request. I'm doing this with …

node.js request multipartform-data
How can I check if request was a POST or GET request in codeigniter?

I just wondered if there is a very easy way to determine whether the request is a $_POST or a $_…

php codeigniter request http-post http-get
Getting binary content in Node.js using request

I was trying to GET a binary data using request, and had something like: var requestSettings = { method: 'GET', url: url, }; …

javascript node.js request binaryfiles requestjs