You need to manually URL-encode the values when concatenating them with the base URL, especially when using extended characters (accents, etc):
Alternatively, the HTTPCaller can do it for you automatically if you use the query string setting rather than manually concatenating the base URL:
You need to manually URL-encode the values when concatenating them with the base URL, especially when using extended characters (accents, etc):
Alternatively, the HTTPCaller can do it for you automatically if you use the query string setting rather than manually concatenating the base URL:
Great, exploding the parameters from URL request to Query String Parameters did the job and is probably more clear for later inspection. Thanks