The Ktor client documentation only lists `basic` a...
# ktor
c
The Ktor client documentation only lists
basic
and
digest
, how can I use the other authentication methods? https://ktor.io/docs/features-auth.html#providers
p
Those are the only built-in auth providers, but it's not too hard to write your own (or include your own
Authorization
header manually)
Lots of REST apis expect a fixed token in all requests, so I came up with this for use on a project