79329001

Date: 2025-01-04 14:36:33
Score: 2.5
Natty:
Report link

Agreeing with @Wonka. Postman recognizes special characters and encodes the & immediately to %26. When the request is sent postman then encodes %26 again like normal parameter encoding.

So to achieve the same behavior you need to replace the & "Test Data O&G Upstream - NA & Europe" with %26 -> "Test Data O%26G Upstream - NA %26 Europe" and then pass this to the URLEncoder.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Wonka
  • Low reputation (1):
Posted by: Tim Eichinger