Not sure if I’m doing something incorrectly, but when I add multiple words in the Value field, the HTTP Node does not encode the spaces and results in an invalid Url error.
For example:
this works as expected…
Query Parameters
Name: Bridge
Value: test
this does not. it returns an invalid Url and I can see in the Url produced it keeps the space and does not encode it.
For example:
this fails with an invalid Url message…
Query Parameters
Name: Bridge
Value: test post
If I manually add “%20” like below, it works as expected.
this works as expected…
Query Parameters
Name: Bridge
Value: test%20post
Am I doing something wrong or is this a bug? The value is coming from a webhook node so not sure how to encode the “spaces” manually.