mirror of
https://github.com/ProxymanApp/Proxyman.git
synced 2026-04-26 00:25:56 +03:00
[GH-ISSUE #1334] Tiny feature request: Breakpoint on domain should always add /* in breakpoint URL #1330
Labels
No labels
Discussion
Feature request
In Progress...
Plugins
Waiting response
Windows
Windows
bug
duplicate
enhancement
feature
good first issue
iOS
macOS 10.11
question
wontfix
✅ Done
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Proxyman#1330
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @carstenhag on GitHub (Aug 17, 2022).
Original GitHub issue: https://github.com/ProxymanApp/Proxyman/issues/1334
Proxyman version? (Ex. Proxyman 1.4.3)
3.8.0
macOS Version? (Ex. mac 10.14)
12.4
Steps to reproduce
Expected behavior
When adding a breakpoint to a domain/subdomain, it is expected to intercept all calls with that domain/subdomain. But Proxyman is currently only adding "duckduckgo.com" to the matching URL. With that URL, you will only get exact matches.
It should automatically add "duckduckgo.com/*" so that every request is intercepted.
@NghiaTranUIT commented on GitHub (Aug 17, 2022):
I don't think that it's a good point.
/*is equivalent to "Include all subpaths of this URLs". I set it off by default because if it's ON, there are a lot of incoming breakpoints. Thus, the user has to select the one they need to do a breakpoint.From my experience, most of the time, we would like to set a breakpoint for a single request. Thus, OFF is default is better 👍
@carstenhag commented on GitHub (Aug 17, 2022):
For me as an app dev I never have any requests that I want to intercept at /. It's always /api/v2/some-call for example.
I guess only for web devs it makes sense to specifically only target /.
Maybe it could be an option? :D.
@NghiaTranUIT commented on GitHub (Aug 17, 2022):
yes, it's from the Web dev. When you reload a website at mydomain.com, there are a bunch of requests, such as mydomain.com. If you create a rule with
/*, there are a bunch of breakpoints too. Not just the homepage/