这个 https.request 例子有什么问题?
What is wrong with this https.request example?
当我尝试 this example 它从来没有 returns 任何东西。
const https = require('https')
const 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);
const req = https.request(options, (res) => {
console.log(res)
});
问题
谁能知道为什么它不起作用?
当我有一个工作示例时,我想让证书+密钥工作。所以这是该尝试的第一步。
您的代码与文档中的示例不完全相同。
你不应该在请求对象上调用 end()
函数,以便请求真正完全发送吗?
我认为这就是您的代码段中缺少的内容。否则,流不会关闭并且请求会继续等待更多,并且您永远不会收到响应,因为您的请求尚未结束。
当我尝试 this example 它从来没有 returns 任何东西。
const https = require('https')
const 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);
const req = https.request(options, (res) => {
console.log(res)
});
问题
谁能知道为什么它不起作用?
当我有一个工作示例时,我想让证书+密钥工作。所以这是该尝试的第一步。
您的代码与文档中的示例不完全相同。
你不应该在请求对象上调用 end()
函数,以便请求真正完全发送吗?
我认为这就是您的代码段中缺少的内容。否则,流不会关闭并且请求会继续等待更多,并且您永远不会收到响应,因为您的请求尚未结束。