zoukankan      html  css  js  c++  java
  • Node.js HTTPS

    稳定性: 3 - 稳定

    HTTPS 是基于 TLS/SSL 的 HTTP 协议。在 Node 里作为单独的模块来实现。

    类: https.Server

    这是 tls.Server 的子类,并且和 http.Server 一样触发事件。更多信息参见 http.Server

    server.setTimeout(msecs, callback)

    详情参见 http.Server#setTimeout().

    server.timeout

    详情参见 http.Server#timeout.

    https.createServer(options[, requestListener])

    返回一个新的 HTTPS 服务器对象。其中 options 类似于 [tls.createServer()][tls.md#tls_tls_createserver_options_secureconnectionlistener]。 requestListener 函数自动加到 'request' 事件里。

    例如:

    // curl -k https://localhost:8000/
    var https = require('https');
    var fs = require('fs');
    
    var options = {
      key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
      cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
    };
    
    https.createServer(options, function (req, res) {
      res.writeHead(200);
      res.end("hello world
    ");
    }).listen(8000);

    var https = require('https');
    var fs = require('fs');
    
    var options = {
      pfx: fs.readFileSync('server.pfx')
    };
    
    https.createServer(options, function (req, res) {
      res.writeHead(200);
      res.end("hello world
    ");
    }).listen(8000);

    server.listen(port[, host][, backlog][, callback])

    server.listen(path[, callback])

    server.listen(handle[, callback])

    详情参见 http.listen()

    server.close([callback])

    详情参见 http.close()

    https.request(options, callback)

    发送请求到安全 web 服务器。

    options 可以是一个对象或字符串。如果 options 是字符串。会被 url.parse() 解析。

    所有来自 http.request() 选项都是经过验证的。

    例如:

    var https = require('https');
    
    var options = {
      hostname: 'encrypted.google.com',
      port: 443,
      path: '/',
      method: 'GET'
    };
    
    var req = https.request(options, function(res) {
      console.log("statusCode: ", res.statusCode);
      console.log("headers: ", res.headers);
    
      res.on('data', function(d) {
        process.stdout.write(d);
      });
    });
    req.end();
    
    req.on('error', function(e) {
      console.error(e);
    });

    option 参数有以下的值:

    • host: 请求的服务器域名或 IP 地址,默认:'localhost'
    • hostname: 用于支持 url.parse()hostname 优于 host
    • port: 远程服务器端口。 默认: 443.
    • method: 指定 HTTP 请求方法。 默认: 'GET'.
    • path: 请求路径。 默认: '/'。如果有查询字符串,则需要包含。比如 '/index.html?page=12'
    • headers: 包含请求头的对象
    • auth: 用于计算认证头的基本认证,即user:password
    • agent: 控制Agent的行为。当使用了一个Agent的时候,请求将默认为Connection: keep-alive。可能的值为:
      • undefined (default): 在这个主机和端口上使用 [global Agent][]
      • Agent object: 在Agent中显式使用 passed.
      • false: 选择性停用连接池,默认请求为: Connection: close

    tls.connect() 的参数也能指定。但是,globalAgent 会忽略他们。

    • pfx: SSL 使用的证书,私钥,和证书Certificate, 默认 null.
    • key: SSL 使用的私钥. 默认 null.
    • passphrase: 私钥或 pfx 的口令字符串. 默认 null.
    • cert: 所用公有 x509 证书. 默认 null.
    • ca: 用于检查远程主机的证书颁发机构或包含一系列证书颁发机构的数组。
    • ciphers: 描述要使用或排除的密码的字符串,格式请参阅http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
    • rejectUnauthorized: 如为 true 则服务器证书会使用所给 CA 列表验证。如果验证失败则会触发 error 事件。验证过程发生于连接层,在 HTTP 请求发送之前。缺省为 true.
    • secureProtocol: 所用的 SSL 方法,比如 TLSv1_method 强制使用 TLS version 1。可取值取决于您安装的 OpenSSL, 和定义于 SSL_METHODS 的常量。

    要指定这些选项,使用一个自定义 Agent.

    例如:

    var options = {
      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);
    
    var req = https.request(options, function(res) {
      ...
    }

    或者不使用 Agent.

    例如:

    var options = {
      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
    };
    
    var req = https.request(options, function(res) {
      ...
    }

    https.get(options, callback)

    http.get() 类似,不过是 HTTPS 版本的.

    options 可以是字符串对象. 如果 options 是字符串, 会自动使用 url.parse() 解析。

    例如:

    var https = require('https');
    
    https.get('https://encrypted.google.com/', function(res) {
      console.log("statusCode: ", res.statusCode);
      console.log("headers: ", res.headers);
    
      res.on('data', function(d) {
        process.stdout.write(d);
      });
    
    }).on('error', function(e) {
      console.error(e);
    });

    类: https.Agent

    HTTPS 的 Agent 对象,和 http.Agent 类似。 详情参见 https.request()

    https.globalAgent

    所有 HTTPS 客户端请求的 https.Agent 全局实例。

  • 相关阅读:
    深度学习分类网络的发展历史
    杨辉三角
    【了解】贝塞尔曲线
    win10桌面点击事件蓝色边框处理
    try{}catch的隐藏(如何优雅的实现异常块)
    switch的一些思考(seitch与ifelse的区别)
    好看的控制台日志线
    Serializable和Externalizabl的异同
    java排序方式对比
    如何初始化Map,java
  • 原文地址:https://www.cnblogs.com/navysummer/p/8458746.html
Copyright © 2011-2022 走看看