Hapi server - how to modify the request body before it is handled by proxy handler

606 views Asked by At

I have a proxy handler

var options = {
    method: method,
    path: route,
    handler: {
      proxy: {
        ...
      }
    }
  };
  server.route(options);

How I can modify the request body before it is handled by the proxy ?

1

There are 1 answers

1
Sathish On

As per their documentation.. You can change the uri.. But not the body.. Please see the docs for more info.. Else open a bug in hapijs repo