if you want to use google authentication with web2py auth:
from gluon.contrib.login_methods.gae_google_account import
GaeGoogleAccount
auth.settings.login_form=GaeGoogleAccount()
form = auth.login(next=URL(r=request, c='default', f='index'))
return dict(login_form=form)i *think* that is all you need to make the magic happen. it's been a while since i have implemented it and may have forgotten a detail or two.

