>
> *basic_auth*
> 2. models/db.py
> from gluon.contrib.login_methods.basic_auth import basic_auth
> auth.settings.login_methods.append(
>     basic_auth('https://one.one.com'))
> auth.settings.login_methods = [basic_auth]
>

First, note that the .append() is pointless, as the next line completely 
overwrites auth.settings.login_methods. Second, in the final line, 
basic_auth is the function imported from the module, but should instead be 
a call to that function:

auth.settings.login_methods = [basic_auth('https://one.one.com')]

Anthony

-- 
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 subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to