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.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报