CodeIgniter 的 CAS 身份验证库
我正在尝试在 CodeIgniter 应用程序中实现 CAS 身份验证,但我找不到当前是否有为其设置的库。我通过只包含类并添加一些肮脏的修复来进行管理,但如果有人知道合适的库,我认为这将是一个更干净的解决方案。
我一直在浏览这里以及谷歌上的一系列帖子,但似乎缺少我需要的东西。唯一相关的地方是 VCU Libraries 上的帖子,但其中不包括该库下载链接。
谢谢大家!
I am trying to implement CAS authentication in a CodeIgniter application though I cannot find if there are any libraries currently set up for it. I am managing by just including the class and adding in a few dirty fixes though if anyone knows of a proper library I think it would be a cleaner solution.
I have been looking through a range of posts on here as well as all over Google but seem to be coming up short on what I need. The only place of any relevance is a post on VCU Libraries but that did not include the library download link.
Thanks everyone!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我启动了一个 CAS 库来简化 CAS 的设置CodeIgniter 的身份验证,依赖于现有的 phpCAS。
要开始使用它,您只需将 phpCAS 安装在某个可访问的目录中,将库文件放入
application/libraries/Cas.php
并创建一个配置文件config/cas.php
> 像这样:然后,在您的控制器中,您将能够执行以下操作:
这是库文件(必须命名为 Cas.php):
I've started a CAS library to simplify setting up CAS authentication for CodeIgniter, that relies on the existing phpCAS.
To start using it, you just have installation phpCAS in some accessible directory, put the library file in
application/libraries/Cas.php
and create a config fileconfig/cas.php
like this:Then, in your controllers you would be able to do this:
Here is the library file (has to be named Cas.php):
我建议使用 Ion Auth Library,它基于 Redux Auth 构建,但已经过时了。 Ion Auth 重量轻,易于定制,并且可以完成您需要的事情。 Ion Auth 是 CodeIgniter 最好的身份验证库之一。
I recommend using Ion Auth Library, it's built upon Redux Auth, which became outdated. Ion Auth is light weight, easy to customize, and does the things you need. Ion Auth is one of the best authentication libraries for CodeIgniter.
究竟是什么不适用于 VCU 库?
您可以在 PHP 中执行的任何操作,都可以在 CodeIgniter 中执行。
所以你可以只使用 PHP CAS 客户端:
http://www.jasig.org/phpcas-121-final-release
这是如何进行身份验证的示例。
https://source.jasig.org/cas-clients /phpcas/trunk/docs/examples/example_simple.php
What exactly is not working with the VCU library?
Anything you can do in PHP, you can do in CodeIgniter.
So you can just use the PHP CAS client:
http://www.jasig.org/phpcas-121-final-release
And here is a example of how to authenticate.
https://source.jasig.org/cas-clients/phpcas/trunk/docs/examples/example_simple.php