是否可以使用 XMPP 和 Google App Engine 创建一个简单的聊天工具?
我想使用 Google App Engine 创建一个网络 IM 聊天系统,可能使用 XMPP。
它将允许社交网络的用户相互交谈。 使用 GAE 可以吗?
我以前没用过GAE。有人知道我可以开始研究的任何好的示例/代码吗?
I would like to create a web IM chat system using Google App Engine using XMPP possibly.
It would allow users of a social network to talk with each other.
Is this possible using GAE?
I haven't used GAE before. Does anybody know of any good examples/code which I could look into to get started?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的所有通信都是在直接与您的站点交互的用户之间进行,则无需使用 XMPP 或从中受益 - 只需将您的 IM 系统直接写入站点即可。 XMPP 支持旨在与外部 IM 服务交互。
或者,您也可以在您的网站中嵌入 Google Talk 小工具 ,但这需要用户登录其 Google 帐户才能使用它。
If all your communication is between users who are interacting with your site directly, there's no need to use XMPP, or benefit from it - just write your IM system into the site directly. XMPP support is designed for interaction with external IM services.
Alternately, you could embed the Google Talk gadget in your site, but that will require users to sign in to their Google accounts to use it.
这当然是可能的。我首先阅读 http://code.google.com/appengine/articles/using_xmpp .html 以便开始。
It's certainly possible. I would start with reading http://code.google.com/appengine/articles/using_xmpp.html in order to get started.