Gopal S Akshintala
05/18/2022, 5:51 AMString.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