PubNub,它对于实时通信来说非常棒。根据pubnub团队提供的文件,我完成了subscribe
和publish
实例,其工作正常。
现在我想知道如何让特定用户在Python(GAE)应用程序中使用PubNub频道,但我没有找到如何在服务器端和客户端实现此功能的完整指南。
注意:我在这里使用Python Google App Engine&的JavaScript。
答案 0 :(得分:1)
PubNub存在是一种跟踪通道中的连接/离开的方法,如果我理解正确,你需要的是here_now功能,
取自Pyton lib是(https://github.com/pubnub/pubnub-api/tree/master/python/)
here_now = pubnub.here_now({
'channel' : 'hello_world',
})
print(here_now['occupancy'])
print(here_now['uuids'])
现在你可以对现在频道中的任何人进行迭代, 这不能在javascript中完成,因此您必须为每个真实频道设置另一个频道,您可以将信息从服务器端发送到客户端,然后相应地更新内容。