is there a method to add custom header to request when image is downloaded? I can use volley or okhttp in Glide.
I try add cookie to cookiemanager in okhttpclient, but i
Kotlin + Glide 4.10.0
val token = "..." val url = https://url.to.your.image val glideUrl = GlideUrl(url) { mapOf(Pair("Authorization", "Bearer $token")) } Glide.with(context) .load(glideUrl) .into(imageView)