[web2py] Re: get user name and email on External cas login

2015-09-14 Thread Laurent Lc
Did you find a solution ? lchambo...@gmail.com Thank you -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are

[web2py] Re: get user name and email on External cas login

2015-03-02 Thread Yusuf Kaka
Hi, I have the same scenario. Is your work-around the correct way to do this? I thought that the CAS consumer would grab all the fields automatically? Regards, Yusuf On Friday, September 20, 2013 at 12:53:01 PM UTC+2, ora marin wrote: Hi All, I have successfully configure my applications

[web2py] Re: get user name and email on External cas login

2013-10-22 Thread ora marin
Found a solution to use my headers generated by the sso that is providing cas ( header are defined by me and you can see them if you put this {{=request.env}} in a view file ) I added this in def user(): of my controllers/default.py def user(): if 'login' in request.args: row =

[web2py] Re: get user name and email on External cas login

2013-10-22 Thread Massimo Di Pierro
This cannot be right: db(db.auth_user.id==db.auth_user.id).select() will select all records. On Tuesday, 22 October 2013 03:54:23 UTC-5, ora marin wrote: Found a solution to use my headers generated by the sso that is providing cas ( header are defined by me and you can see them if you

[web2py] Re: get user name and email on External cas login

2013-10-15 Thread ora marin
Still blocked on this problem :( when I put {{=request.env}} in my view I see that my server is receiving the correct values. Please, can anyone help ? On Friday, September 20, 2013 12:53:01 PM UTC+2, ora marin wrote: Hi All, I have successfully configure my applications to login on

[web2py] Re: get user name and email on External cas login

2013-10-05 Thread ora marin
So I am still stuck on this problem :( I have None in all my fields of auth_user ( first_name, last_name, email ) It creates a entry in the database correctly but just fill Registration_id with https://auth.foo.bar/cas/[login] Should I implement something more or should I get the infos