Reputation: 111
I'm testing a GET request using Jmeter, this request has path parameter:
rest/V1/autobusca/marketplace/product/:productSku
I'm trying to send the parameter in two different locations
I noticed the code response is 200, but the body response is "[]", but when I send it using Postman the response body has a lot of information.
If I change the path in the request like this:
rest/V1/autobusca/marketplace/product/${productSku}
I noticed the code response is 404. Can you help me?
Upvotes: 0
Views: 943
Reputation: 21
Use "//" instead of "/".
Correct URL will be : rest/V1/autobusca/marketplace/product//${productSku}
Upvotes: 0