mirror of
https://github.com/ProxymanApp/Proxyman.git
synced 2026-04-27 00:55:57 +03:00
[GH-ISSUE #1005] options request empty body #999
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#999
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 @Colaman0 on GitHub (Sep 24, 2021).
Original GitHub issue: https://github.com/ProxymanApp/Proxyman/issues/1005
Originally assigned to: @NghiaTranUIT on GitHub.
Proxyman 2.33.0
mac 10.15
when i send a request, somtimes i see two request . first request is options request and response is empty body, second is the normal request. what should i do to skip the options request.
@NghiaTranUIT commented on GitHub (Sep 24, 2021):
If this request is made from Safari/GoogleChrome, the OPTIONS request is a pre-flight request, so there is no way to skip it.
@Colaman0 commented on GitHub (Sep 24, 2021):
The request is made from Android App.
@NghiaTranUIT commented on GitHub (Sep 24, 2021):
Just wondering: Is your request made by a WebView in Android or a native networking library?
@Colaman0 commented on GitHub (Sep 24, 2021):
Not for the WebView, it made by OkHttp.
@NghiaTranUIT commented on GitHub (Sep 24, 2021):
From what I google, it seems the Option requests come from OKHttp, for some reason. Proxyman captures and displays on the app.
Unfortunately, there is no way to "Skip" it. Maybe you can try block it (Right-Click -> Tool -> Block List -> Make sure Method = OPTIONS). It will block these requests and won't display on the app 👍
@Colaman0 commented on GitHub (Sep 24, 2021):
Thanks for you reply.