fuel icon indicating copy to clipboard operation
fuel copied to clipboard

The easiest HTTP networking library for Kotlin/Android

Results 111 fuel issues
Sort by recently updated
recently updated
newest added

# Bug Report ## Description In Android, when logging the response object upon failing request, a fatal exception `NetworkOnMainThreadException` is thrown and causing the app to crash. ## To Reproduce...

# Bug Report ## Description fuel-coroutines does not actually use java's async IO API - requests are launched inside a coroutine, and then the coroutine's thread is blocked until the...

Referring to your first example on documentation that I paste here: import com.github.kittinunf.fuel.httpGet import com.github.kittinunf.result.Result; fun main(args: Array) { val httpAsync = "https://httpbin.org/get" .httpGet() .responseString { request, response, result ->...

# Feature Request proxy set ## Description I want to use http proxy ,or sock5 proxy ,but use account name and password , how to set these?

# Bug Report ## Description Making a request (for example a download) with `.suspendable().await()` and then canceling the coroutine does not cancel the download request if the download has been...

My apologies if this is inappropriate to post here; I am new to Kotlin and I think that may be a big part of my problem, but I have not...

:thinking: question

Since devices running android < 7.1 will stop trusting lets encrypt certificates next year, is there a way to include the certificate so my app continues to function normally? For...

# Bug Report ## Description We use Fuel in our prod code, which works well. When testing this code, we get: ``` /usr/lib/jvm/java-1.8.0-openjdk-amd64/ java.lang.NoSuchMethodError: kotlin.jvm.internal.MutablePropertyReference1Impl.(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;I)V at com.github.kittinunf.fuel.core.FuelManager.(FuelManager.kt) at com.github.kittinunf.fuel.Fuel.(Fuel.kt:11) at...

Hi, I have a server I am trying to reach to. If I open a browser and simply enter the url of my endpoint, I can see the response. If...

:bug: bug

We can upload file from local computer using Postman to our server. So I think there is no problems with my bankend. This is HTTP request using postman. --- [Header]...