我已经使用带有以下代码的正确证书创建了https服务器:
na.locf
我的目的是在浏览器中显示网络摄像头图片(为此目的需要https)。
网络摄像头显示代码也可用:
(可以跳过,不思考主要内容,而是考虑饱腹感)
const express = require('express')
const app = express()
const https = require('https')
const fs = require('fs')
const port = 3000
app.get('/', (req, res) => {
res.send("IT'S WORKING!")
})
const httpsOptions = {
key: fs.readFileSync('./security/cert.key'),
cert: fs.readFileSync('./security/cert.pem')
}
const server = https.createServer(httpsOptions, app)
.listen(port, () => {
console.log('server running at ' + port)
})
我想使用创建的https服务器访问网络摄像头。但是不知道如何。