I noticed a problem with ```String.toParameter(): ...
# http4k
g
I noticed a problem with
Copy code
String.toParameter(): Parameter = split("=").map(String::fromFormEncoded)...
in
org.http4k.core.Parameters.kt
. This doesn’t handle a URL like the one below properly which has a “=” sign within the query param value:
{{baseUrl}}/services/data/v{{version}}/query/?q=SELECT Id FROM Profile where Name = 'Standard User'
I see this should be replaced by
split("=", limit=2)
should solve the problem