当用户通过user.LogoutURL路径退出GAE应用时,我想在他们注销时执行其他操作。
如何使用特定的处理程序(如:https://cloud.google.com/appengine/docs/go/users/#Go_User_authentication_in_Go)覆盖它并仍然执行所需的注销操作?或者我如何检测用户是否正在注销,然后执行我想要的操作?
答案 0 :(得分:4)
您可以做的是创建自己的退出处理程序,并重定向到user.LogoutURL
。
func logoutHandler(w http.ResponseWriter, r *http.Request) {
c := appengine.NewContext(r)
// do what you want to do here.
http.Redirect(w, r, users.LogoutURL(c))
}