golang和gorilla / csrf的饼干

时间:2017-12-10 01:28:26

标签: go cookies gorilla

我是Go的新手并尝试建立网站注册/登录。

我正在做这样的会话cookie:

 // If the login succeeded
    cookie:=&http.Cookie{
            Name: "session",
            Value: uuid.NewV4().String(),
        }
        sessionStore[cookie.Value] = Client{true,databaseUsername}
        http.SetCookie(res, cookie)
        http.Redirect(res, req, "/home", 302)

但是在使用gorilla / csrf添加CSRF保护后,我的会话cookie无效。

有什么想法吗?

0 个答案:

没有答案