Red5:身份验证 - 我应该在连接方法中执行它吗?

发布于 2024-11-11 21:33:58 字数 143 浏览 3 评论 0原文

我应该在 connect 方法中执行身份验证,还是应该创建一个名为 authenticate 的单独方法,然后客户端可以调用该方法来对自己进行身份验证?请注意,我必须连接到 mysql 数据库才能执行身份验证,因此执行 I/O 可能需要一些时间。

Should I perform authentication in connect method or should I create a separate method called authenticate that clients can then call to authenticate themselves? note that I’ll have to connect to a mysql database to perform authentication so it might take some time doing the I/O.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白鸥掠海 2024-11-18 21:33:58

我建议您扩展 ApplicationLifecycle 并将身份验证逻辑放置在 appConnect 方法中。我已经在几个项目中使用过这个方法并且效果非常好。身份验证教程(带源码):http://blog.infrared5.com/2012/05 /red5-身份验证/

I suggest that you extend ApplicationLifecycle and place your authentication logic within the appConnect method. I've used this method on several projects and it works very well. Authentication tutorial (with source): http://blog.infrared5.com/2012/05/red5-authentication/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文