-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Access service application always redirect cas #4
Comments
@Delvius per official CAS protocol documentation https://jasig.github.io/cas/development/protocol/CAS-Protocol-Specification.html#parameters:
Many comments around the nets suggest that "renew=false" could be used. Either protocol has changed or implementation has been broken. Either way |
@Delvius I've forked and published my version if you want to give it a try. See https://www.npmjs.com/package/r-cas-authentication. |
I'm glad I looked -- I was going to create a similar pull request for this. Thought it was just my CAS configuration or something. |
@matthewvalimaki thank you ! @kylepixel thank you for sharing at first ! now: pass the hand or support ? |
Hey, all! I've been pretty inactive on my Github projects recently. I originally published this to NPM to quickly get it into our application at my job but I'm planning on revisiting this and handling all of the requests / pull requests. Sorry about that. |
Hi,
i have a trouble with this plugin. My application always redirect me to the cas authentication page (at the first connection) even if i already have a cas ticket.
My config :
var cas = new CASAuthentication({
cas_url : 'XXXX',
service_url : 'XXXX',
cas_version : '3.0',
renew : false,
is_dev_mode : false,
dev_mode_user : '',
dev_mode_info : {},
session_name : 'cas_user',
session_info : 'cas_userinfo',
destroy_session : false
});
app.get('/',cas.bounce_redirect, controllers.index);
Any ideas ?
The text was updated successfully, but these errors were encountered: