如何将 vBulletin auth 与我的网站集成?
我需要在网站的其余部分使用 vBulletin 身份验证系统。 vB 有这方面的 API 吗?
我希望找到类似的东西:
if($vBulletin->isAuthenticated())
{
// user authenticated
}
如果 vB 没有这样的 API,是否有其他方法来检查用户是否经过身份验证?
I need to use vBulletin auth system on the rest of my site.
Does vB has any APIs for that?
Im expecting to find something like that:
if($vBulletin->isAuthenticated())
{
// user authenticated
}
In case of vB does not have such API, is there any other ways to check if user is authenticated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上,为了确保用户已登录,您需要查看 cookie 并匹配 vBulletin DB 中的会话哈希。
此链接提供了有关此事的良好信息: http://www.saurdo.com/11/11/utilizing-the-vbulletin-database-in-your-main-site
更多信息可以在我对这个类似问题的回答中找到:
Django / vBulletin 单点登录
Basically, to ensure the user is logged in you need to look into cookies and match the session hash from vBulletin DB.
This link has good information on that matter: http://www.saurdo.com/11/11/utilizing-the-vbulletin-database-in-your-main-site
More information can be found in my answer to this similar question:
Django / vBulletin single sign on
已经为 3.7 编写了一个插件,您可以在这里找到和4 的更新版本在这里。
我不认为 vBulletin 开发了一个 API 可以让你做到这一点,但这些 mod 似乎可以解决这个问题。如果您想使用不同的方法,您可以查看代码以了解它是如何完成的。
A plugin has been written for 3.7 which you can find here and an updated version for 4 is here.
I don't think there's an API which has been developed by vBulletin which allows you to do it, but these mods seem to do the trick. You could look through the code to see how it has been done if you want to use a different method.