Hi,
I want to use CAS REST API to establish SSO between 2 services.
Idea is to generate and get valid service token by calling REST /cas/v1/tickets/{TGT} method
and then redirect to CAS server with service={url}&token={ST} parameter in order to authenticate user on 2nd service.
I was able to make this trick with /validate method, it returns 'yes {username}', but when I'm trying to call /login method - it always displays login form instead of redirecting to my service url
(even if I pass valid service token)
Is it possible at all? or maybe I go the wrong direction?
Thanks.