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

``` retrofitVer = "2.9.0" // https://github.com/square/retrofit/releases api "com.squareup.retrofit2:retrofit:$retrofitVer" ``` Testing on Android API level 30, AVD ``` Retrofit.Builder retrofitBuilder = new Retrofit.Builder().baseUrl(mBaseUrl); ``` ``` D/StrictMode: StrictMode policy violation: android.os.strictmode.NonSdkApiUsedViolation: Ljava/lang/invoke/MethodHandles$Lookup;->(Ljava/lang/Class;I)V...

This enables accessing the `CoroutineContext` where the method was called from an OkHttp interceptor. Use cases: - inspect elements of the `CoroutineContext` for logging/monitoring - use `runBlocking` from `Interceptor.intercept` while...

When the response came with empty body, Retrofit BodyObservable calls onNext() with null value. In RxJava2 that leads to NPE, but that is not an issue, and there's a recommended...

There's a lot of types people want to use for a lot of things. Having a mechanism to support custom parameter type handling would provide an extension point (albeit an...

Feature

To catch problems. Might mean we need to vary AGP version on CI, too.

In Stripe APIs the filtering can be done by sending parameters with "-G" curl option, as example https://stripe.com/docs/api/accounts/list#list_accounts-created ``` curl https://api.stripe.com/v1/accounts?limit=3 \ -u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \ -d created[lte]=1517443200 \ -G ```...

Needs Info

It appears that when an Observable produced using RxJavaCallAdapterFactory gets adapted to a Single with `toSingle()`, the resulting Single doesn't obey Single's contract of throwing *OnErrorNotImplementedException* if the Single emits...

I have been struggling in loading data in recylcerview on enqueue method from 3 days and have tried all the solutions but haven't got success.Its just skipping enqueue method eventhough...

Content-Type: multipart/form-data; boundary=455acd1b-68be-406e-8cae-22905056b5d4 hey guys I just want to change the boundary value

They shouldn't. https://github.com/square/retrofit/runs/686587741

Bug