English 中文(简体)
在我的应用网站(不使用谷歌标识)上添加Instant Messaging(可能的XMPP)
原标题:Adding Instant Messaging (possibly XMPP) to my website on AppEngine (without using Google Login IDs)

我开发了谷歌应用引擎顶端的播音网站,我要补充即时信息,并可能/可能的话,增加视听会议。

鉴于网站的用户不希望分享其个人详情或实际联系信息,我处理所有日志的信息和会议,而没有假设客户有(或甚至想要)权.账户或与其真实身份相关的任何其他标志。

鉴于我不能直接访问谷歌会谈或其它一些现有服务,我谨就如何在我的网站上增加即时信息提出建议。

为此使用XMPP是否有意义,如果谷歌会谈或任何其他XMPP服务提供者允许我登记新的用户账户而不进行人工干预(例如,在用户在我的网站上登记后,自动向XMPP供应商登记)? 或者,如果不是的话,我或许可以使用谷歌会谈的单一视角,每个用户都有不同的资源标识(me@google.com/user1, me@google.com/user2, 等等),并在不同资源之间发出信息? 这一工作和(或)与单一账户同时联系的数千人能否从谷歌会谈中被禁止?

Perhaps some kind of AJAX based solution might make more sense given the fact that users are already registered on my website, but are not registered for an XMPP service?

对我如何处理这个问题的任何建议都会受到高度赞赏。

Kind Regards -Alexander

最佳回答

文本聊天是比较容易的问题。 你们可以或没有XMPP。 如果没有XMPP,你就会在你的网页上打造一个Facebook chat型客户,向用户发送信息,然后在接收器屏幕上显示这种信息。 客户可以投票,也可以在投票时使用。 http://www.olark.com/“rel=“nofollow”>olark,以了解这项工作的方式。

一旦你建立密码,将 app作为向正确人(匿名,可能的话)传递正确信息的开关板,你可以在必要时将这一信息轻易送到XMPP。 双方都在编目清单中添加了你。 (假设一个异质地点)

音频和视频,我没有在双方之间分享细节,就无法做到这一点。

问题回答

暂无回答




相关问题
How to make logging.debug work on Appengine?

I m having a tough time getting the logging on Appengine working. the statement import logging is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an ...

gqlQuery returns object, want list of keys

Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example: items = db.GqlQuery("SELECT __key__ FROM Items") ...

Integrating Google AppEngine with a Thick Client

I want to make a multi-user client-server solution with Java Swing thick client as a front-end and Google AppEngine (Java one) as a back-end. The problem is that GAE provides only web-based forms for ...

sorl.thumbnail : thumbnail is not a valid tag library?

I am trying to install sorl.thumbnail but am getting the following error message: thumbnail is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module ...

热门标签