JavaNetAuthenticator
Deprecated
Use okhttp3.Authenticator.Companion.JAVA_NET_AUTHENTICATOR instead
Do not use this.
Instead, configure your OkHttpClient.Builder to use Authenticator.JAVA_NET_AUTHENTICATOR:
val okHttpClient = OkHttpClient.Builder()
.authenticator(okhttp3.Authenticator.Companion.JAVA_NET_AUTHENTICATOR)
.build()Content copied to clipboard