Is there a way to change how client query paramete...
# ktor
m
Is there a way to change how client query parameters in
Resource
are serialized? Now i get
<http://example.com?ids=1&ids=2|example.com?ids=1&ids=2>
, but I would want
<http://example.com?ids=[1|example.com?ids=[1>, 2]
One workaround I have is to just use
joinToString()
method and make parameter string type, but was wondering if there is another way.
a
@Rustam Siniukov
r
There is no built in functionality for that.