echox icon indicating copy to clipboard operation
echox copied to clipboard

Echo cookbook and website

Results 75 echox issues
Sort by recently updated
recently updated
newest added

can not bind a slice of struct when the request type is formdata ``` type request struct { id uint `form:"id" json:"id"` Products []product `form:"products"` } type product struct {...

Migrated from https://github.com/labstack/echo/issues/269 Please mention you recipe request in the area. - [x] WebSocket - [x] net/websocket - [x] Gorilla - #268 - [ ] https://github.com/labstack/echo/issues/253 - rate limiting -...

cookbook

https://echo.labstack.com/cookbook/crud I try to CRUD Cookbook. And I found two points to fix. (※1. line 19, 2. line 45) Can I fix it? 1. [AS-IS] var ( users = map[int]***u**ser{}...

Migrated from https://github.com/labstack/echo/issues/277

cookbook

The code below has a compilation error: ```go e := echo.New() e.Use(casbin_mw.Middleware(casbin.NewEnforcer("casbin_auth_model.conf", "casbin_auth_policy.csv"))) ``` ```bash $ go build src/server.go # command-line-arguments src/server.go:46:27: too many arguments in call to "github.com/labstack/echo-contrib/casbin".Middleware have...

{"time":"2020-01-14T01:58:06.508921+09:00","level":"FATAL","prefix":"echo","file":"server.go","line":"29","message":"no reachable servers"} exit status 1

In https://echo.labstack.com/cookbook/jwt , `==` results in a timing attack (even if you are comparing hashes like this: `hash(webPassword) == savedHashedPassword`). The example code should probably have at least a comment...

Copied from Echo: https://github.com/labstack/echo/issues/1309