Body Dump
El middleware Body Dump captura los payloads de request y response y los pasa a un handler registrado. Generalmente se usa para debugging o logging.
e := echo.New()e.Use(middleware.BodyDump(func(c *echo.Context, reqBody, resBody []byte, err error) { // Handle the request and response bodies.}))Configuración personalizada
Sección titulada «Configuración personalizada»e := echo.New()e.Use(middleware.BodyDumpWithConfig(middleware.BodyDumpConfig{}))Configuración
Sección titulada «Configuración»type BodyDumpConfig struct { // Skipper defines a function to skip middleware. Skipper Skipper
// Handler receives the request and response payloads and the handler error, if any. // Required. Handler BodyDumpHandler
// MaxRequestBytes limits how much of the request body to dump. If the request body // exceeds this limit, only the first MaxRequestBytes are dumped and the handler // receives truncated data. // Default: 5 * MB (5,242,880 bytes). Set to -1 to disable limits (not recommended). MaxRequestBytes int64
// MaxResponseBytes limits how much of the response body to dump. If the response body // exceeds this limit, only the first MaxResponseBytes are dumped and the handler // receives truncated data. // Default: 5 * MB (5,242,880 bytes). Set to -1 to disable limits (not recommended). MaxResponseBytes int64}Handler tiene esta firma:
type BodyDumpHandler func(c *echo.Context, reqBody []byte, resBody []byte, err error)Configuración por defecto
Sección titulada «Configuración por defecto»// Effective defaults applied when fields are left unset (Handler is required).BodyDumpConfig{ Skipper: DefaultSkipper, MaxRequestBytes: 5 * MB, MaxResponseBytes: 5 * MB,}