PHP code example of jacekkow / uphpcas
1. Go to this page and download the library: Download jacekkow/uphpcas library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jacekkow / uphpcas example snippets
{
$cas = new uphpCAS('https://cas.server.local/cas');
$user = $cas->authenticate();
echo 'Authenticated as '.$user->user;
} catch(Exception $e) {
echo 'Jasig authentication failed: '.$e->getMessage();
die();
}
= new uphpCAS();
if($cas->isAuthenticated()) {
$user = $cas->authenticate();
echo 'Authenticated as '.$user->user;
} else {
echo 'Not authenticated. <a href="login.php">Log in</a>';
}
{
$cas = new uphpCAS('https://cas.server.local/cas');
$user = $cas->authenticate();
header('Location: index.php');
} catch(Exception $e) {
echo 'Jasig authentication failed: '.$e->getMessage();
die();
}
{
$cas = new uphpCAS('https://cas.server.local/cas');
$user = $cas->logout();
} catch(Exception $e) {
echo 'Jasig authentication failed: '.$e->getMessage();
die();
}
$cas = new uphpCAS('https://cas.server.local/cas');
$cas->setServiceUrl('https://service.local/subpage');
$cas = new uphpCAS('https://cas.server.local/cas',
'https://service.local/subpage');
$cas = new uphpCAS('https://cas.server.local/cas');
$cas->setMethod('GET');
$cas = new uphpCAS('https://cas.server.local/cas');
$cas->setCaFile('./localStore.pem');