I’m using google-app-engine in python language, I’m want to do something when user logon success event.
for example
def onlogin_success():
user = users.get_current_user()
log('user login %s' + user.nickname())
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to generate the login URL via
create_login_urland pass in adest_urlparam.The user will be taken to
dest_urlon successful login.