I'm trying to figure out if there's a way to support websockets on the Go runtime for Google App Engine (in the standard environment). People in other threads have pointed to the sockets package, but I can't see how you'd use it for a websocket. Am I missing something?
1条回答 默认 最新
- douzuo5504 2018-04-06 17:43关注
An application running in the standard environment can use the gorilla/websocket package as a client. Set the Dialer.NetDial function to
func(network, addr string) (net.Conn, error) { return socket.Dial(ctx, network, addr) }
wheresocket
is the appengine socket package. Set other dialer fields as needed and call Dialer.Dial to dial the connection.An application running in the standard environment cannot serve websocket connections.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥20 搭建三相栅极电路后高侧浮动地VS存在电容特性
- ¥20 云卓h12pro 数传问题
- ¥20 请问有人知道怎么用工艺库里面的sdb文件通过virtuoso导出来library里面每个cell的symbol吗?
- ¥20 海思 nnie 编译 报错
- ¥50 决策面并仿真,要求有仿真结果图
- ¥15 springboot接入微信支付SDK
- ¥50 大区域的遥感影像匹配 怎么做啊
- ¥15 求解答:pytorch跑yolov8神经网络受挫
- ¥20 Js代码报错问题不知道怎么解决
- ¥15 gojs 点击按钮node的position位置进行改变,再次点击回到原来的位置