BasicAuthProvider

class BasicAuthProvider(credentials: suspend () -> BasicAuthCredentials?, realm: String?, sendWithoutRequestCallback: (HttpRequestBuilder) -> Boolean) : AuthProvider

Client basic authentication provider.

Constructors

Link copied to clipboard
fun BasicAuthProvider(username: String, password: String, realm: String? = null, sendWithoutRequest: Boolean = false)
Link copied to clipboard
fun BasicAuthProvider(credentials: suspend () -> BasicAuthCredentials?, realm: String? = null, sendWithoutRequestCallback: (HttpRequestBuilder) -> Boolean = { false })

Functions

Link copied to clipboard
open suspend override fun addRequestHeaders(request: HttpRequestBuilder)

Add authentication method headers and creds.

Link copied to clipboard
open override fun isApplicable(auth: HttpAuthHeader): Boolean

Check if current provider is applicable to the request.

Link copied to clipboard
open suspend override fun refreshToken(response: HttpResponse): Boolean

Refresh token if required.

Link copied to clipboard
open override fun sendWithoutRequest(request: HttpRequestBuilder): Boolean

Properties

Link copied to clipboard
open override val sendWithoutRequest: Boolean

Wait for HttpStatusCode.Unauthorized to send credentials.