dexador icon indicating copy to clipboard operation
dexador copied to clipboard

A fast HTTP client for Common Lisp

Results 34 dexador issues
Sort by recently updated
recently updated
newest added

```lisp (let ((cookie (cl-cookie:make-cookie-jar))) (dex:get "https://welearn.sflep.com/user/prelogin.aspx?loginret=http%3a%2f%2fwelearn.sflep.com%2fuser%2floginredirect.aspx" :max-redirects 0 :cookie-jar cookie)) ``` The above code would run just fine on *unix. But on Windows (uses WINHTTP) I tried to run the...

- Add bearer authorization option to all request methods - Break keyword parameter lines so they do not exceed 100 chars - Expand authorization section in readme Nowadays a lot...

Gday, This issue is asking for advice. I find the need to use dexador to connect to a http server that requires kerberos authentication. I have kerberos authentication working on...

I didn't like lisp shouting at me all the time so I set in my .sbclrc `(setf *print-case* :downcase)`. This causes a problem with dexador when it does: `(intern (format...

address issue https://github.com/fukamachi/dexador/issues/158 for users that have `*print-case*` set to `:downcase` by using `alexandria:format-symbol`

got an error on POST requests with large "body". Error: ``` An I/O error occurred: undocumented reason (SSL_get_error: 5). ERR_print_errors(): [Condition of type CL+SSL::SSL-ERROR-SYSCALL] Restarts: 0: [RETRY-REQUEST] Retry the same...

This is a slightly different issue than the previous https://github.com/fukamachi/dexador/issues/67 and this one I think should be handled by dexador. If you view the page source of the link in...

`dexador:make-connection-pool` and `dexador.connection-cache:*max-active-connections*` are well documented in the source, but I think they deserve a mention in the README. Right now if you are using dexador multithreaded in more than...

I was able to ``(ql:quickload "dexador")`` and run a test with ``(dex:get "https://lisp.org")`` on Lispworks in my Windows 11 machine, but I get the following failure with Allegro Express 10.1....

With an increasingly complex systems environment with high parallelism, dex would fail. This code solved all these issues by retrying up to 3 times to work through any temporary network...