dexador
dexador copied to clipboard
A fast HTTP client for Common Lisp
**Description** When Dexador is used in the crontab script, the crontab throws the following error: ``` Jun 13 10:46:03 work CROND[21648]: (sheep) CMDOUT (Unhandled SB-INT:STREAM-DECODING-ERROR in thread #:) Jun 13...
Hi, `dex:get` raises an undefined function error when getting a https URL, for example: (defvar *url* "https://lispcookbook.github.io/cl-cookbook/web-scraping.html") (defvar *html* (dex:get *url*)) will result in: The alien function "CRYPTO_num_locks" is undefined....
When uusing dexador on kickass.cd I get the following ``` CL-USER> (dex:get "https://kickass.cd/") ; Debugger entered on # ``` ``` A failure in the SSL library occurred on handle #.(SB-SYS:INT-SAP...
Right now if you try fetching a resource that is using HTTP/2 you'll get `DEXADOR.ERROR:HTTP-REQUEST-NOT-FOUND` error. Sample call to reproduce (using dexador from quicklisp): ``` (dexador:get "https://www.theglobeandmail.com/life/health-and-fitness/health/number-of-us-adhd-diagnoses-astronomical/article10606200/?cmpid=rss1") ``` RIght now...
In the documentation it says that headers with a `NIL` value are not written, however this does not seem the case. The `loop` that writes the custom headers does not...
```common-lisp (handler-bind ((dex:http-request-failed #'dex:retry-request)) (dexador:post "https://api001.backblazeb2.com/b2api/v1/b2_get_upload_url" :content "{\"bucketId\": \"b78178f0df3db6975dd20544\"}" :headers (list (cons "Authorization" "Something")))) ``` returns ``` output operation on closed SSL stream [Condition of type SIMPLE-ERROR] Restarts: 0: [RETRY]...
Please catch this condition so I can use `dex:ignore-and-continue`. This occurs when a 301 redirect points to a URL that cannot be resolved/connected to. This may be a desired 301...
In STREAM-READ-CHAR, the first value returned from the BABEL:CODE-POINT-COUNTER function was used to track LAST-CHAR-SIZE (the number of bytes consumed while reading a character). However, it is actually the number...
I have a problem when trying to connect to a server requiring digest authentication. I first try to connect with a HEAD request to get the authentication challenge in the...