如何将 vBulletin auth 与我的网站集成?

发布于 2024-08-26 00:05:47 字数 213 浏览 8 评论 0原文

我需要在网站的其余部分使用 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 技术交流群。

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

发布评论

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

评论(2

2024-09-02 00:05:47

基本上,为了确保用户已登录,您需要查看 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

阳光下慵懒的猫 2024-09-02 00:05:47

已经为 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.

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