我的目标是, 当与客户端建立连接时, 发送一个cookie到客户端去, 必须在这个wss里, 不能使用普通http方法.
我是这么调用的:
```
var responseHeader http.Header
//这里我不知道怎么写了
// responseHeader.Set("Set-Cookie", "SS=Q0=5Lb_nQ; path=/search")
var conn, err = upgrader.Upgrade(w, r, responseHeader)
```
方法的原型是这样的
```
// Upgrade upgrades the HTTP server connection to the WebSocket protocol.
//
// The responseHeader is included in the response to the client's upgrade
// request. Use the responseHeader to specify cookies (Set-Cookie) and the
// application negotiated subprotocol (Sec-WebSocket-Protocol).
//
// If the upgrade fails, then Upgrade replies to the client with an HTTP error
// response.
func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header) (*Conn, error) {
const badHandshake = "websocket: the client is not using the websocket protocol: "
```
![image.png](https://static.studygolang.com/190722/6ce4a56f7683e73c5b173b07565d94e5.png)
有个网络库叫gorilla, gorilla有个包叫websocket, websocket包有个方法叫upgrade, 这个upgrade方法的第三个参数怎么用的?
cups_book · · 2752 次点击upgrader.Upgrade会将header写入给返回,你看看握手的返回,这样响应里面就有setcooke header。
https://github.com/gorilla/websocket/blob/master/server.go#L228-L246
```golang
var responseHeader http.Header
var cookie = &http.Cookie{
Name: "name",
Value: "val",
Secure: true,
HttpOnly: true,
}
responseHeader.Add("Set-Cookie", cookie.String())
var conn, err = upgrader.Upgrade(w, r, responseHeader)
```
#10
更多评论
..............
你不觉得,如果是websocket链接上上之后,直接发个message回去,网页监听到后set cookie更靠谱么?
另外gorilla是一个网络库,里面有个websocket的包...
#1
1楼 <a href="/user/jarlyyn" title="@jarlyyn">@jarlyyn</a> 谢谢指正, 我修改了标题.
按照你这个思路的话, 我的问题, 就变成了, 怎么识别客户端, 怎么针对某一个具体的客户端, 发送消息
我搜索了很久, 都没有人用过这第三个参数, 你能帮我看看, 它怎么用吗
https://github.com/gorilla/websocket/tree/master/examples/chat
这个例子, 是讲广播的, 好像没有提到怎么针对某个具体的客户端, 发送消息
#2