2012-02-27 20:09:34 +01:00
|
|
|
# HTTPS
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2015-08-13 18:14:34 +02:00
|
|
|
HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
|
2011-01-21 22:12:35 +01:00
|
|
|
separate module.
|
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
## Class: https.Agent
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.4.5
|
|
|
|
-->
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
An Agent object for HTTPS similar to [`http.Agent`][]. See [`https.request()`][]
|
2015-11-04 23:59:28 +01:00
|
|
|
for more information.
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Class: https.Server
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2011-04-28 09:36:04 +02:00
|
|
|
|
|
|
|
This class is a subclass of `tls.Server` and emits events same as
|
2015-11-28 00:30:32 +01:00
|
|
|
[`http.Server`][]. See [`http.Server`][] for more information.
|
2011-04-28 09:36:04 +02:00
|
|
|
|
2017-03-04 00:23:48 +01:00
|
|
|
### server.setTimeout([msecs][, callback])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.2
|
|
|
|
-->
|
2017-03-04 00:23:48 +01:00
|
|
|
- `msecs` {number} Defaults to 120000 (2 minutes).
|
|
|
|
- `callback` {Function}
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.Server#setTimeout()`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2017-03-25 19:26:11 +01:00
|
|
|
### server.timeout
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.2
|
|
|
|
-->
|
2017-03-25 19:26:11 +01:00
|
|
|
- {number} Defaults to 120000 (2 minutes).
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.Server#timeout`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2015-10-29 20:53:43 +01:00
|
|
|
### server.keepAliveTimeout
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2015-10-29 20:53:43 +01:00
|
|
|
-->
|
|
|
|
- {number} Defaults to 5000 (5 seconds).
|
|
|
|
|
|
|
|
See [`http.Server#keepAliveTimeout`][].
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## https.createServer(options[, requestListener])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2017-03-04 00:23:48 +01:00
|
|
|
- `options` {Object} Accepts `options` from [`tls.createServer()`][] and [`tls.createSecureContext()`][].
|
|
|
|
- `requestListener` {Function} A listener to be added to the `request` event.
|
2011-01-21 22:12:35 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
// curl -k https://localhost:8000/
|
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
|
|
|
};
|
|
|
|
|
|
|
|
https.createServer(options, (req, res) => {
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end('hello world\n');
|
|
|
|
}).listen(8000);
|
|
|
|
```
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2012-05-13 21:38:23 +02:00
|
|
|
Or
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
const options = {
|
2017-04-03 01:55:01 +02:00
|
|
|
pfx: fs.readFileSync('test/fixtures/test_cert.pfx'),
|
|
|
|
passphrase: 'sample'
|
2016-01-17 18:39:07 +01:00
|
|
|
};
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
https.createServer(options, (req, res) => {
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end('hello world\n');
|
|
|
|
}).listen(8000);
|
|
|
|
```
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
### server.close([callback])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.90
|
|
|
|
-->
|
2017-03-04 00:23:48 +01:00
|
|
|
- `callback` {Function}
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.close()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
### server.listen(handle[, callback])
|
2017-03-04 00:23:48 +01:00
|
|
|
- `handle` {Object}
|
|
|
|
- `callback` {Function}
|
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
### server.listen(path[, callback])
|
2017-03-04 00:23:48 +01:00
|
|
|
- `path` {string}
|
|
|
|
- `callback` {Function}
|
|
|
|
|
|
|
|
### server.listen([port][, host][, backlog][, callback])
|
|
|
|
- `port` {number}
|
|
|
|
- `hostname` {string}
|
|
|
|
- `backlog` {number}
|
|
|
|
- `callback` {Function}
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.listen()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2017-03-04 00:23:48 +01:00
|
|
|
## https.get(options[, callback])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.6
|
2017-06-02 17:07:06 +02:00
|
|
|
changes:
|
|
|
|
- version: v7.5.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/10638
|
|
|
|
description: The `options` parameter can be a WHATWG `URL` object.
|
2016-06-23 21:51:12 +02:00
|
|
|
-->
|
2017-06-02 17:07:06 +02:00
|
|
|
- `options` {Object | string | URL} Accepts the same `options` as
|
2017-03-04 00:23:48 +01:00
|
|
|
[`https.request()`][], with the `method` always set to `GET`.
|
|
|
|
- `callback` {Function}
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Like [`http.get()`][] but for HTTPS.
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2017-06-02 17:07:06 +02:00
|
|
|
`options` can be an object, a string, or a [`URL`][] object. If `options` is a
|
|
|
|
string, it is automatically parsed with [`url.parse()`][]. If it is a [`URL`][]
|
|
|
|
object, it will be automatically converted to an ordinary `options` object.
|
2015-11-04 23:59:28 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
https.get('https://encrypted.google.com/', (res) => {
|
2016-07-27 04:25:08 +02:00
|
|
|
console.log('statusCode:', res.statusCode);
|
|
|
|
console.log('headers:', res.headers);
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
res.on('data', (d) => {
|
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
}).on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
```
|
2015-11-04 23:59:28 +01:00
|
|
|
|
|
|
|
## https.globalAgent
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.9
|
|
|
|
-->
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Global instance of [`https.Agent`][] for all HTTPS client requests.
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2017-03-04 00:23:48 +01:00
|
|
|
## https.request(options[, callback])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.6
|
2017-06-02 17:07:06 +02:00
|
|
|
changes:
|
|
|
|
- version: v7.5.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/10638
|
|
|
|
description: The `options` parameter can be a WHATWG `URL` object.
|
2016-06-23 21:51:12 +02:00
|
|
|
-->
|
2017-06-02 17:07:06 +02:00
|
|
|
- `options` {Object | string | URL} Accepts all `options` from [`http.request()`][],
|
2017-03-04 00:23:48 +01:00
|
|
|
with some differences in default values:
|
|
|
|
- `protocol` Defaults to `https:`
|
|
|
|
- `port` Defaults to `443`.
|
|
|
|
- `agent` Defaults to `https.globalAgent`.
|
|
|
|
- `callback` {Function}
|
|
|
|
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2012-08-18 07:18:02 +02:00
|
|
|
Makes a request to a secure web server.
|
|
|
|
|
2017-03-04 00:23:48 +01:00
|
|
|
The following additional `options` from [`tls.connect()`][] are also accepted when using a
|
|
|
|
custom [`Agent`][]:
|
|
|
|
`pfx`, `key`, `passphrase`, `cert`, `ca`, `ciphers`, `rejectUnauthorized`, `secureProtocol`, `servername`
|
|
|
|
|
2017-06-02 17:07:06 +02:00
|
|
|
`options` can be an object, a string, or a [`URL`][] object. If `options` is a
|
|
|
|
string, it is automatically parsed with [`url.parse()`][]. If it is a [`URL`][]
|
|
|
|
object, it will be automatically converted to an ordinary `options` object.
|
2012-08-18 07:18:02 +02:00
|
|
|
|
2011-01-21 22:12:35 +01:00
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2017-04-03 01:55:01 +02:00
|
|
|
const options = {
|
2016-01-17 18:39:07 +01:00
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET'
|
|
|
|
};
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2017-04-03 01:55:01 +02:00
|
|
|
const req = https.request(options, (res) => {
|
2016-07-27 04:25:08 +02:00
|
|
|
console.log('statusCode:', res.statusCode);
|
|
|
|
console.log('headers:', res.headers);
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
res.on('data', (d) => {
|
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
|
|
|
});
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
req.on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
2016-11-15 12:47:30 +01:00
|
|
|
req.end();
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2017-03-04 00:23:48 +01:00
|
|
|
Example using options from [`tls.connect()`][]:
|
2011-09-14 13:17:30 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2017-04-03 01:55:01 +02:00
|
|
|
const options = {
|
2016-01-17 18:39:07 +01:00
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
|
|
|
};
|
|
|
|
options.agent = new https.Agent(options);
|
|
|
|
|
2017-04-03 01:55:01 +02:00
|
|
|
const req = https.request(options, (res) => {
|
|
|
|
// ...
|
2016-07-15 07:41:29 +02:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-09-14 13:17:30 +02:00
|
|
|
|
2015-11-30 19:40:02 +01:00
|
|
|
Alternatively, opt out of connection pooling by not using an `Agent`.
|
2011-09-14 13:17:30 +02:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2017-04-03 01:55:01 +02:00
|
|
|
const options = {
|
2016-01-17 18:39:07 +01:00
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
|
|
|
|
agent: false
|
|
|
|
};
|
|
|
|
|
2017-04-03 01:55:01 +02:00
|
|
|
const req = https.request(options, (res) => {
|
|
|
|
// ...
|
2016-07-15 07:41:29 +02:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-11-14 04:21:49 +01:00
|
|
|
|
2017-06-02 17:07:06 +02:00
|
|
|
Example using a [`URL`][] as `options`:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const { URL } = require('url');
|
|
|
|
|
|
|
|
const options = new URL('https://abc:xyz@example.com');
|
|
|
|
|
|
|
|
const req = https.request(options, (res) => {
|
|
|
|
// ...
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Agent`]: #https_class_https_agent
|
2017-06-02 17:07:06 +02:00
|
|
|
[`URL`]: url.html#url_the_whatwg_url_api
|
2015-11-28 00:30:32 +01:00
|
|
|
[`http.Agent`]: http.html#http_class_http_agent
|
2015-10-29 20:53:43 +01:00
|
|
|
[`http.Server#keepAliveTimeout`]: http.html#http_server_keepalivetimeout
|
2017-05-08 18:30:13 +02:00
|
|
|
[`http.Server#setTimeout()`]: http.html#http_server_settimeout_msecs_callback
|
|
|
|
[`http.Server#timeout`]: http.html#http_server_timeout
|
|
|
|
[`http.Server`]: http.html#http_class_http_server
|
2015-11-28 00:30:32 +01:00
|
|
|
[`http.close()`]: http.html#http_server_close_callback
|
|
|
|
[`http.get()`]: http.html#http_http_get_options_callback
|
|
|
|
[`http.listen()`]: http.html#http_server_listen_port_hostname_backlog_callback
|
|
|
|
[`http.request()`]: http.html#http_http_request_options_callback
|
|
|
|
[`https.Agent`]: #https_class_https_agent
|
|
|
|
[`https.request()`]: #https_https_request_options_callback
|
|
|
|
[`tls.connect()`]: tls.html#tls_tls_connect_options_callback
|
2017-03-04 00:23:48 +01:00
|
|
|
[`tls.createSecureContext()`]: tls.html#tls_tls_createsecurecontext_options
|
2017-05-08 18:30:13 +02:00
|
|
|
[`tls.createServer()`]: tls.html#tls_tls_createserver_options_secureconnectionlistener
|
2016-06-23 21:54:34 +02:00
|
|
|
[`url.parse()`]: url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost
|