gpt4 book ai didi

node.js - 如何使用 NodeJS 从客户端获取套接字的 header 请求

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:57 24 4
gpt4 key购买 nike

我对这件事还很陌生。我只是想知道是否可以获取 Web 套接字客户端请求 header 。我在服务器端使用node.js:

  • 使用 ExpresJS 我可以获得如下 header :

    router.post('/', function (req, res, next) {
    console.log(req.headers);

    });

  • 使用 Web Socket,可以吗?

    var WebSocket = require('ws');
    var ws = new WebSocket('ws://www.host.com/path');
    ws.on('open', function open() {
    // how to get the headers
    ws.send('something');
    });

有可能吗?谢谢

最佳答案

WebSocket 没有 header ,但它们的升级请求有。

var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({ port: 8080 });

wss.on('connection', function connection(ws) {

console.log(ws.upgradeReq.headers);

ws.on('message', function incoming(message) {
console.log('received: %s', message);
});

ws.send('something');
});

请注意,您不能将 header 设置为 ws 请求的一部分。

关于node.js - 如何使用 NodeJS 从客户端获取套接字的 header 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27726003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com