Search code examples
replacehttp-proxycharles-proxy

When I'm using map local it maps several requests


My path is /api/query without any Query Parameters, but Charles maps all requests that have path /api/query.

In other words:

Charles maps /api/query?some=1, /api/query?another=1 and /api/query requests, but I need just /api/query. I need to be mapped clear request without query parameters.

version: 3.12.3


Solution

  • Not sure if you have figured out but there is an alternative tool that works the same as Charles named Proxyman. Basically, just right click your URL --> select Tools --> Map Local

    1. If you check "Include all subpaths of this domain" --> Proxyman will map all requests including subpaths such as /api/query?some=1, /api/query?another=1 and /api/query

    enter image description here

    1. If you uncheck the box --> Proxyman will map /api/query only

    enter image description here

    Hope it helps :)