Hey guys (<@U0B0WETDM> <@U0BA343QR>), I’m trying ...
# kotlin-fuel
m
Hey guys (@kittinunf @yoavst), I’m trying to call the url https://api.github.com/search/repositories?q=android+language:kotlin&amp;sort=updated&amp;order=desc from Fuel. I do this by using a base url https://api.github.com/search/repositories and adding the parameters as list of Pairs. the
q
parameter is where I hit an issue. I want it to have the value
android language:kotlin
so I add it to a the list as
"q" to "android language:kotlin”
. But I seem to hit a duplicate encoding issue where the result is
q=android+language%253Akotlin
.