CRSF 中間件由 gorilla/csrf 提供。
import (
"github.com/clevergo/clevergo"
"github.com/gorilla/csrf"
)
m := csrf.Protect(
[]byte("32-byte-long-auth-key"),
csrf.Secure(false), // 本地開發
// 其他選項
)
router.Use(clevergo.WrapHH(m))
CRSF 中間件由 gorilla/csrf 提供。
import (
"github.com/clevergo/clevergo"
"github.com/gorilla/csrf"
)
m := csrf.Protect(
[]byte("32-byte-long-auth-key"),
csrf.Secure(false), // 本地開發
// 其他選項
)
router.Use(clevergo.WrapHH(m))
本文档使用 BookStack 构建