Reputation: 13103
I only want to return certain response specifically for /path/embed=profile&prefetch=true&couples_only=false
and NOT embed=profile&prefetch=true&couples_only=false&ANYTHINGELSE
But Charles seems to be treating the 2 queries the same
What I've tried
/path/embed=profile&prefetch=true&couples_only=false?
- hoping the ?
will match 1 character or nothing, ruling out the wanted longer queries
embed=profile&prefetch=true&couples_only=false(?!&)
- standard regex, tested in regexr.com
What else can I do?
Upvotes: 0
Views: 1051
Reputation: 3594
From what I remember, it's a bug and it hasn't fixed ever since.
You might try Proxyman, which is similar to Charles and it will solve your problem.
Here is the step:
Upvotes: 1