resty
resty copied to clipboard
How to modify response body OnAfterResponse?
rc := resty.New()
rc.OnAfterResponse(func(c *resty.Client, r *resty.Response) error {
// eg: in here, i want to modify response body
if r.StatusCode() == 403 {
// how can i change body to other content
}
return nil
})