fukamachi / dexador

A fast HTTP client for Common Lisp
http://ultra.wikia.com/wiki/Dexador
379 stars 41 forks source link

Feat: add bearer authorization #171

Closed kilianmh closed 6 months ago

kilianmh commented 7 months ago

Nowadays a lot of API use Bearer instead of Basic Authorization.

I was not sure how to best implement tests for the request headers. I tested on Linux X86 and on Windows and bearer-auth works for me on both.

fukamachi commented 6 months ago

I don't want to add keywords for each authorization scheme (e.g., digest-auth, hoga-auth, etc.), but I think it's fine to add one only for Bearer since it's the most popular.

fukamachi commented 6 months ago

Thanks!