码迷,mamicode.com
首页 > Web开发 > 详细

php使用phpCAS接入CAS SSO

时间:2014-08-18 12:41:54      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   os   io   for   ar   cti   

源码:https://github.com/Jasig/phpCAS

文档:https://wiki.jasig.org/display/CASC/phpCAS+examples


安 装

ubuntu下使用pear安装

sudo pear install  http://downloads.jasig.org/cas-clients/php/current.tgz


配置

//  CAS Server 主机
$cas_host = ‘cas-server‘;

// CAS Server 路径
$cas_context = ‘/cas‘;

// CAS server.端口
$cas_port = 443;

// <span>CAS Server </span>证书
$cas_server_ca_cert_path = ‘./ssoserver.cer‘;


使用

//验证访问用户是否合法
require_once ‘include/cas_config.php‘;


require_once  ‘phpcas/CAS.php‘;

// Enable debugging
phpCAS::setDebug();


// Initialize phpCAS
phpCAS::client(CAS_VERSION_2_0, $cas_host, $cas_port, $cas_context);


// For production use set the CA certificate that is the issuer of the cert
// on the CAS server and uncomment the line below
// phpCAS::setCasServerCACert($cas_server_ca_cert_path);


// For quick testing you can disable SSL validation of the CAS server.
// THIS SETTING IS NOT RECOMMENDED FOR PRODUCTION.
// VALIDATING THE CAS SERVER IS CRUCIAL TO THE SECURITY OF THE CAS PROTOCOL!
phpCAS::setNoCasServerValidation();


// force CAS authentication
phpCAS::forceAuthentication();

// 取得登陆用户id
$cas_user_id = phpCAS::getAttribute(‘id‘);


//phpCAS::logout();



原 理

推荐资料:http://blog.chinaunix.net/uid-22816738-id-3525939.html


php使用phpCAS接入CAS SSO,布布扣,bubuko.com

php使用phpCAS接入CAS SSO

标签:blog   http   使用   os   io   for   ar   cti   

原文地址:http://my.oschina.net/u/1050922/blog/303715

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!