fuel
fuel copied to clipboard
The easiest HTTP networking library for Kotlin/Android
# Bug Report ## Description I want to change the name of file before uploading it. ## To Reproduce Steps to reproduce the behavior: 1. I use "Fuel.upload" method 2....
# Bug Report ## Description Performing GET request doesn't call `hostnameVerifier` which is configured in `FuelManager` instance. ## To Reproduce The minimal code fragment: ```Kotlin val fuelManager: FuelManager = FuelManager().apply...
# Feature Request There is a case where our current Fuel couldn't handle properly. ``` val request = Fuel.get(url) request['If-None-Match'] = 'some etag' val response = request.responseObject(...) // This will...
Hello, I'm having some issues with the library on Android 4.4. The TLS 1.0 protocol is deprecated and I want to know if I can set the library to use...
# Bug Report ## Description On the current project, Android Handler is really on Sync. I found a very nice example for this https://github.com/Kotlin/kotlinx.coroutines/blob/master/ui/kotlinx-coroutines-android/src/HandlerDispatcher.kt#L58
The Android Library has "consumerProguardFiles" to add proguard rules in the text file into the library. I don't know which proguard rules that really needed to be added to this...
Hello I am trying to do API calls but on Android 4.x they fail with this error `javax.net.ssl.SSLException: Connection closed by peer` can you please explain to me what I...
With the release of Kotlin 1.1, the Javascript backend is no longer experimental. It would be nice if the same HTTP API was available at all layers of the kotlin...
https://tools.ietf.org/html/rfc7231#section-6.4.1 [RFC 7231 - 6.4. Redirection 3xx](https://tools.ietf.org/html/rfc7231#section-6.4.1) says: > A client SHOULD detect and intervene in cyclical redirections (i.e., "infinite" redirection loops). Note: An earlier version of this specification recommended...
As you probably are aware protobuff is now in GA as a golang package with multithreaded goodness. For my microarch JSON/REST is no longer (nor ever really was) a good...