<how to pass access token and refresh token to hea...
# stackoverflow
u
how to pass access token and refresh token to header in retrofit kotlin in koin I am developing new android app where I am making post login request but I have confused I am using koin dependcy injection how can I pass refresh token and access token after successfully response. in order to making a call interface MeloApi { @Headers("Content-Type: application/json") @POST("/login") suspend fun makeLogin(@Body loginModel: LoginModel) : Response } below my login model data class LoginModel(val username:String, val password:String) // following my base url...