pipe char in url path not reaching Apigee trace

Not applicable

Making requests with pipes, like: https://<my-ip-address>/v1/<proxy>/something| returns:

{ "fault": { "faultstring": "Request parse error {0}", "detail": { "code": "BAD_REQUEST" } } }

I have checked nginx logs and the encoded url is correct.

Solved Solved
1 2 429
1 ACCEPTED SOLUTION

Not applicable

Issue with nginx encoding url, fixed with proxy_redirect in each location: http://serverfault.com/questions/459369/disabling-url-decoding-in-nginx-proxy

View solution in original post

2 REPLIES 2

Not applicable

Issue with nginx encoding url, fixed with proxy_redirect in each location: http://serverfault.com/questions/459369/disabling-url-decoding-in-nginx-proxy

@José Mauro Alejandro González Luna Ortiz , Thank you very much for sharing the solution with Apigee Community Members, I am sure it will be helpful for someone looking to resolve same. Way to go..