当用户通过 user.LogoutURL 路径注销 GAE 应用程序时,我想在他们注销时执行其他操作。如何使用特定处理程序覆盖它(例如:https : //cloud.google.com/appengine/docs/go/users/#Go_User_authentication_in_Go)并仍然执行所需的注销操作?或者我怎样才能检测到用户正在注销然后执行我想要的操作?
1 回答
DIEA
TA贡献1820条经验 获得超2个赞
您可以做的是创建自己的注销处理程序,然后重定向到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))
}
- 1 回答
- 0 关注
- 194 浏览
添加回答
举报
0/150
提交
取消