ArangoDB v3.10 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent stable version.
The @arangodb/request
module of the JavaScript API
The request module provides the functionality for making HTTP requests
const request = require('@arangodb/request')
Making HTTP requests
HTTP method helpers
In addition to the request
function convenience shorthands are available for each HTTP method in the form of, i.e.:
request.head(url, options)
request.get(url, options)
request.post(url, options)
request.put(url, options)
request.delete(url, options)
request.patch(url, options)
These are equivalent to using the request
function directly, i.e.:
request[method](url, options)
// is equivalent to
request({method, url, ...options});
For example:
const request = require('@arangodb/request');
request.get('http://localhost', {headers: {'x-session-id': 'keyboardcat'}});
// is equivalent to
request({
method: 'get',
url: 'http://localhost',
headers: {'x-session-id': 'keyboardcat'}
});
The request function
The request function can be used to make HTTP requests.
request(options)
Performs an HTTP request and returns a Response object.
Parameter
The request function takes the following options:
url
oruri
: the fully-qualified URL or a parsed URL fromurl.parse
.qs
(optional): object containing querystring values to be appended to the URL.useQuerystring
: iftrue
, usequerystring
module to handle querystrings, otherwise useqs
module. Default:false
.method
(optional): HTTP method (case-insensitive). Default:"GET"
.headers
(optional): HTTP headers (case-insensitive). Default:{}
.body
(optional): request body. Must be a string orBuffer
, or a JSON serializable value ifjson
istrue
.json
: iftrue
,body
will be serialized to a JSON string and theContent-Type
header will be set to"application/json"
. Additionally the response body will also be parsed as JSON (unlessencoding
is set tonull
). Default:false
.form
(optional): when set to a string or object and nobody
has been set,body
will be set to a querystring representation of that value and theContent-Type
header will be set to"application/x-www-form-urlencoded"
. Also seeuseQuerystring
.auth
(optional): an object with the propertiesusername
andpassword
for HTTP Basic authentication or the propertybearer
for HTTP Bearer token authentication.sslProtocol
(optional): which tls version should be used to connect to the url. The default is4
which is TLS 1.0. See SSL protocol for more options.followRedirect
: whether HTTP 3xx redirects should be followed. Default:true
.maxRedirects
: the maximum number of redirects to follow. Default:10
.encoding
: encoding to be used for the response body. If set tonull
, the response body will be returned as aBuffer
. Default:"utf-8"
.timeout
: number of seconds to wait for a response before aborting the request.returnBodyOnError
: whether the response body should be returned even when the server response indicates an error. Default:true
.
The function returns a Response object with the following properties:
rawBody
: the raw response body as aBuffer
.body
: the parsed response body. Ifencoding
was not set tonull
, this is a string. If additionallyjson
was set totrue
and the response body is well-formed JSON, this is the parsed JSON data.headers
: an object containing the response headers. Otherwise this is identical torawBody
.statusCode
andstatus
: the HTTP status code of the response, e.g.404
.message
: the HTTP status message of the response, e.g.Not Found
.
Forms
The request module supports application/x-www-form-urlencoded
(URL encoded) form uploads:
const request = require('@arangodb/request');
var res = request.post('http://service.example/upload', {form: {key: 'value'}});
// or
var res = request.post({url: 'http://service.example/upload', form: {key: 'value'}});
// or
var res = request({
method: 'post',
url: 'http://service.example/upload',
form: {key: 'value'}
});
Form data will be encoded using the qs module by default.
If you want to use the querystring module instead, simply use the useQuerystring
option.
JSON
If you want to submit JSON-serializable values as request bodies, just set the json
option:
const request = require('@arangodb/request');
var res = request.post('http://service.example/notify', {body: {key: 'value'}, json: true});
// or
var res = request.post({url: 'http://service.example/notify', body: {key: 'value'}, json: true});
// or
var res = request({
method: 'post',
url: 'http://service.example/notify',
body: {key: 'value'},
json: true
});
HTTP authentication
The request module supports both HTTP Basic authentication. Just pass the credentials via the auth
option:
const request = require('@arangodb/request');
var res = request.get(
'http://service.example/secret',
{auth: {username: 'jcd', password: 'bionicman'}}
);
// or
var res = request.get({
url: 'http://service.example/secret',
auth: {username: 'jcd', password: 'bionicman'}
});
// or
var res = request({
method: 'get',
url: 'http://service.example/secret',
auth: {username: 'jcd', password: 'bionicman'}
});
Alternatively you can supply the credentials via the URL:
const request = require('@arangodb/request');
var username = 'jcd';
var password = 'bionicman';
var res = request.get(
'http://' +
encodeURIComponent(username) +
':' +
encodeURIComponent(password) +
'@service.example/secret'
);
You can also use Bearer token authentication:
const request = require('@arangodb/request');
var res = request.get(
'http://service.example/secret',
{auth: {bearer: 'keyboardcat'}}
);
// or
var res = request.get({
url: 'http://service.example/secret',
auth: {bearer: 'keyboardcat'}
});
// or
var res = request({
method: 'get',
url: 'http://service.example/secret',
auth: {bearer: 'keyboardcat'}
});