mirror of
https://github.com/ProxymanApp/proxyman-windows-linux.git
synced 2026-04-27 00:45:55 +03:00
[GH-ISSUE #418] request.query parsing and url rebuilding error #417
Labels
No labels
Linux
bug
enhancement
enhancement
pull-request
question
✅ Done
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxyman-windows-linux#417
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 @infchaos on GitHub (Jul 13, 2024).
Original GitHub issue: https://github.com/ProxymanApp/proxyman-windows-linux/issues/418
when proxing url like this one
http://xxx.xxx/test?e=123&token=xxx-xxx:xxx-xxx=the server got the url
/ajax?e=123without the token(a base64 like value)and I wrote such js to fix it
it works,and then I got another problem
the server need a url in this format
http://xxx.xxx/test?aaa&bbb=123but the proxy changed the url into
http://xxx.xxx/test?aaa=&bbb=123the extra "=" make the response data invalid because the server may parse the url by regex.
is there any way to directly return the url string I computed or just return the origin url without any changes?
@NghiaTranUIT commented on GitHub (Oct 17, 2024):
It's expected as it's a standard URL Query. If the value is absent, it's displays as
aaa=.