which protocol or library should i use for chat-application?

agolangf · 2017-10-18 15:00:10 · 622 次点击    
这是一个分享于 2017-10-18 15:00:10 的资源,其中的信息可能已经有所发展或是发生改变。

i want to use golang as backend.need to build simple,secure chat-app like whatsapp.

which library or protocol should i use? i tried to use xmpp but it's not very tested for golang.


评论:

rgzr:

Depending on how ambitious you are, you could try to implement the Matrix protocol.

Like others here suggested it's REST/JSON but lays out how a secure, modern chat client/server should work.

I don't know if there is any work done in Go that goes into the direction but you can look at their reference implementation (in Python).

Yellow_Bricks:

Certainly very interesting, but also very ambitious. The matrix team is also currently working on a go rewrite so you might want to just jump on there.

ZetaHunter:

You could look at https://github.com/mattermost/mattermost-server for inspiration.

ericzhill:

RESTful websockets or gRPC would be a good starting point.

Thaxll:

A bit nitpicking but I'm not sure RESTful websocket is a thing, REST is stateless, more appropriate would be JSON over websocket.

skyacer:

They say websockets arent safe as xmpp?

ericzhill:

How do you you define "safe"?

skyacer:

"in October 2010, Google’s security analyst Adam Barth accompanied by Carnegie-Mellon scientists in their work “Transparent Proxies: Threat or Menace” demonstrating how to intercept the WebSockets feeds of the users working through transparent proxies and substitute the information they receive. This gives a wide field for scamming, which is why Firefox and Opera refused to support the protocol until the more secure version is released. In addition, some popular anti-virus programs, such as Avast, consider this protocol harmful and block its usage completely."

qu33ksilver:

websockets already have "wss://" which just initiates an https connection and then moves on to work with just the tcp layer.

Is this still insecure ?

captncraig:

Yeah, this article must be pre-wss. Although even the 2010 rfcs I found have wss in them.

ericzhill:

If you don't like websockets, then go with gRPC over SSL.


入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

622 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传