My Apigee Proxy accepts a file upload using the multipart/form-data . When I execute a Javascript Policy that does only the following :
var payload = context.getVariable(“request.content”);
context.setVariable(“request.content”, payload);
The backend reacts to the data differently on adding this JS policy. How is Apigee changing the binary data here ?