AccessTokenInterceptor

class AccessTokenInterceptor @Inject constructor(accessTokenCredentials: AccessTokenCredentials) : Interceptor

Interceptor used to add Bearer Token authentication headers to requests.

This interceptor adds the access token to the request headers for endpoints that require Bearer Token Authentication.

Parameters

accessTokenCredentials

The credentials containing the access token.

Constructors

Link copied to clipboard
@Inject
constructor(accessTokenCredentials: AccessTokenCredentials)

Functions

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

Intercepts the request and adds the Bearer Token header.