通道 API:当令牌过期时,状态是否会收到断开连接通知?
我在 Channel API 上构建了一个应用程序,使用频道状态 url 来跟踪连接的客户端。
当客户端离开时,我在 /_ah/channel/disconnected/ 收到 ping。如果在前端客户端连接期间令牌过期,我会收到 ping 吗?
I have built an app on the Channel API, using the channel presence urls to keep track of connected clients.
I receive a ping at /_ah/channel/disconnected/ when clients go away. Will I receive a ping if the token expires while the front-end client is connected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你会的。您的前端客户端将收到 onerror 和 onclose 回调。
Yes, you will. And your front-end client will get an onerror and onclose callback.