cancel
Showing results for 
Search instead for 
Did you mean: 

PHP library SSO autentication

codx
Champ in-the-making
Champ in-the-making
Hi,

I successfully plugged several applications to CAS (SSO) server; including Afresco.
Here is a classic authentication to alfresco using the PHP Library:


$repository = new Repository($repositoryUrl);
$ticket = $repository->authenticate($userName, $password);
$session = $repository->createSession($ticket);
$store = new SpacesStore($session);
$currentNode = null;

This works fine.

I would like to know if there is any way to authenticate using the CAS ticket value instead of the login/password values.

NOTES:
- Version Alfresco3.2

Thank you
1 REPLY 1

codx
Champ in-the-making
Champ in-the-making
Hi,

I have my answer, It might help someone so there it is.
There is no SSO system with the PHP library, you must use the Alfresco REST API to do it

Regards