You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The origin + is encoded to %2B, but after Proxyman map remote, %2B is decode to +.
E.g. map https://proxyman.io/ to https://docs.proxyman.io/. When request to https://proxyman.io/?data=abc%2B123 Proxyman should request https://docs.proxyman.io/?data=abc%2B123. but Proxyman change %2B to + and requset https://docs.proxyman.io/?data=abc+123
Description
Query value not encode correctly after map remote when query value contains
+
Steps to Reproduce
Add a map remote rule like
https://proxyman.io/
->https://docs.proxyman.io/
Make a requset which query value contains urlencoded
+
likehttps://proxyman.io/?data=abc%2B123
https://docs.proxyman.io/?data=abc+123
Current Behavior
Proxyman decode
%2B
to+
Expected Behavior
Keep
%2B
at query value, the url should behttps://docs.proxyman.io/?data=abc%2B123
Environment
The text was updated successfully, but these errors were encountered: