retrofit icon indicating copy to clipboard operation
retrofit copied to clipboard

A type-safe HTTP client for Android and the JVM

Results 165 retrofit issues
Sort by recently updated
recently updated
newest added

What kind of issue is this? - [ ] Question. This issue tracker is not the place for questions. If you want to ask how to do something, or to...

Why can't I get a raw response using retrofit? ``` @GET("/api/service/live") Response liveCheck(); ``` I implemented `retrofit2.CallAdapter.Factory` and a converter specifically for getting a raw response, however I got an...

I stumbled upon this: https://github.com/square/retrofit/issues/1554 and added a converter because I wanted to handle the empty response body and not pass it as null to Observable. That thread is talking...

Test case/sample: https://gist.github.com/alapshin/a60540a1a128c0af042b7fe427b9de88 Description 1. OkHttp client is configured to use arbitrary call timeout 2. Retrofit's RxJava3 call adapter is created via `RxJava3CallAdapterFactory.create()` Result When call time outs Rx stream...

I am getting a lot of hiccups `Choreographer: Skipped 59 frames! The application may be doing too much work on its main thread.` during first initialization of Retrofit which is...

## What is the purpose of this PR * This PR fixes a flaky test to avoid an assertion on an asynchronous operation `retrofit2.adapter.rxjava.CancelDisposeTest#cancelDoesNotDispose` ## Reproduce the test failure *...

I am having broken pipe exception with calling my api I hope you to help me with this. **RegisterApi.kt** ``` interface RegisterApi { @POST("/device") suspend fun registerDevice( @Body body: RegisterBody...

when i using personal mobile data network . will keep show "no address associated with hostname". Previous Retrofit dont have this issue . My Phone Model is Samsung S10plus android...

Now that inline classes are stable in Kotlin 1.5.0, it would be nice to have API endpoints return [Result](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-result/) to wrap the outcome (success/failure) of a retrofit call, instead of...

Feature

What kind of issue is this? - [ ] Question. This issue tracker is not the place for questions. If you want to ask how to do something, or to...