Overview
When using Apifox for API testing, if the query parameter contains "+", it will be incorrectly parsed as a space after being sent to the server.
Solution
This is because Apifox will URL encode the parameter when sending, and "+" will be automatically encoded as %20. Therefore, replace "+" with "%2B".
September 11, 2024Less than 1 minute