I have an API which it's URL requires a string with spaces --> A B C I have tried
String X = "A B C";
vars.put("myKey",X);
GET https://myserver.com/Api/v1.0/config/${myKey}
When JMeter executes this it replaces spaces with %20 in url. I do not want JMeter to repalces spaces with %20, how can I do that
GET https://myserver.com/Api/v1.0/config/A%20B%20C
You can't send space in URL:
But you can use
+instead of spaceAnd notice that server/receiving end will decode it back to spaces so there isn't a real issue.