BasicAuthenticationInterceptor

class BasicAuthenticationInterceptor @Inject constructor(basicAuthCredentials: BasicAuthCredentials) : Interceptor

Interceptor used to add Basic Authentication headers to requests.

This interceptor encodes the API user ID and API key in Base64 and adds them to the request headers for endpoints that require Basic Authentication.

Parameters

basicAuthCredentials

The credentials containing the API user ID and API key.

Constructors

Link copied to clipboard
@Inject
constructor(basicAuthCredentials: BasicAuthCredentials)

Functions

Link copied to clipboard
open override fun intercept(chain: Interceptor.Chain): Response

Intercepts the request and adds the Basic Authentication header.