yet another question: is it expected that the last...
# ktor
m
yet another question: is it expected that the last path element from the default url is dropped? i decalred
defaultRequest{ url("<https://api.foo.com/foo/bar>") }
but i can see the urls called are always lacking the
/bar
. why is that?
a
Try to add the trailing
/
m
Thanks again - that does the trick :)