On Jun 8, 5:29 am, mdipierro <[email protected]> wrote:
> Hi Richard,
>
> the gmail authentication is not based on open-id (yet). it presents
> you with a standard login form. It tried to log you in via the normal
> auth_user table. It it fails, it tried to verify your password using
> the gmail smtp service. If that works a the auth_user table is created/
> updated with the md5 hash of your current password.
>
> This is designed to be streightforward to setup.
>
> We will soon have an API like stack overflow does.

? What do you mean: "an API like stack overflow" ??

>
> Massimo
>
> On Jun 7, 10:22 pm, Richard <[email protected]> wrote:
>
>
>
> > hi,
>
> > I tried testing the gmail authentication but I still get the standard
> > login form. Do I need to add something in the controller/view?
>
> > Have you seen the login form for stackoverflow.com? It lets you choose
> > between many providers, including gmail. Is something like that
> > possible through ldap_auth?
>
> > Richard
>
> > On May 13, 3:01 pm, mdipierro <[email protected]> wrote:
>
> > > Please try this....
>
> > > 1) to authenticate withgmail
>
> > > auth=Auth(globals(),db)
> > > from gluon.contrib.login_methods.email_auth import email_auth
> > > auth.settings.login_methods.append(email_auth())
>
> > > 2) to authenticate using basicauthenticationof a third party server
>
> > > auth=Auth(globals(),db)
> > > from gluon.contrib.login_methods.basic_auth import basic_auth
> > > auth.settings.login_methods.append(basic_auth('http://server'))
>
> > > 3) to authenticate using LDAP  server
>
> > > auth=Auth(globals(),db)
> > > from gluon.contrib.login_methods.ldap_auth import ldap_auth
> > > auth.settings.login_methods.append(ldap_auth(...))
>
> > > (requires ldap library installed. look into gluon/contrib/
> > > login_methods/ldap_auth.py for ... options).
>
> > > Please let me know if this works for you.
>
> > > CAS client will be next....
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to