madskristensen / RestClientVS

Other
66 stars 14 forks source link

Issue with string parameters with embedded spaces #36

Open SteveIves opened 1 year ago

SteveIves commented 1 year ago

It appears that string parameters with embedded spaces cause problems for RestClientVS, at least with OData endpoints with string parameters. For example, this URL works in a browser and works in Postman but fails in RESTClientVS:

GET https://localhost:8086/odata/v1/customers(Name='A B C RENTAL CENTER INC')

A 404 is returned. But if the parameter is first URL encoded, like this:

GET https://localhost:8086/odata/v1/customers(Name='A%20B%20C%20RENTAL%20CENTER%20INC')

Then it works.