I am using oauth20_account and oauth10a_account as well as the regular form login authentication.
I want to be able to execute a method after the user logs in. For the regular form login authentication, return dict(form=auth.login(onaccept=execute_me_after_login)) executes execute_me_after_login() after a successful login. However, execute_me_after_login() is not executed for oauth20_account and oauth10a_account. What is the best way to execute a method after successful 3rd party logins?

