kenta.koyama
kenta.koyama
I simplified logic according to this comment (https://github.com/rybalkinsd/kohttp/pull/151#discussion_r317798695). And as I said in the first comment (https://github.com/rybalkinsd/kohttp/pull/151#issue-307536896), below tasks are already left. - [x] enable to handle date format's Retry-After...
I fixes code about this comment! https://github.com/rybalkinsd/kohttp/pull/151#discussion_r320482624
All fixes are done, so I remove 'WIP'.
Hi, I tried to work on this. And I have one question. Which does this issue mean? 1. When we get 429 response from external service, we should regard it...
Thank you for your very useful input. I completely agree with your opinion. I'll consider the future direction of this feature.
No, there's no bottleneck. But I wait to implement it because the multiplatform feature is now experimental and I don't see how big the need for the multiplatform feature is...
@itegulov Thank you very much. I would be very grateful for your help. As you can see from the following code, the common code is in the form of receiving...
The Kotlin/JS feature is implemented by #30. (released at version 1.0.0.) This issue is renamed into "Kotlin/Native Support".
@theexiile1305 Thank you for the question. Can you elaborate on this? Is your problem something like the following? "CSV files written by kotlin-csv don't have a BOM, so it cannot...
@theexiile1305 The situation you described has been successfully reproduced by this code, thanks. ```kotlin csvWriter().open("test.csv") { writeRows(listOf( listOf("id","name","email"), listOf(0,"Jane","[email protected]"), listOf(1,"Doe","[email protected]"), listOf(2,"Müller","[email protected]"), )) } ``` So, I plan to introduce an...