HTTP.jl icon indicating copy to clipboard operation
HTTP.jl copied to clipboard

HTTP for Julia

Results 142 HTTP.jl issues
Sort by recently updated
recently updated
newest added

The minimal example fails to return a valid response (but doesn't throw any errors) when run from an `:interactive` thread, but works fine if `:interactive` is removed. Julia should be...

When I do `HTTP.get("https://www.google.com")` using company network, I get a long error message beginning with `MbedTLS error code -9984: X509 - Certificate verification failed, e.g. CRL, CA or signature check...

Hi all, I am using HTTP 0.9.17 and Julia 1.7.1. Right now, whenever I make an HTTP request, it seems the protocol used is HTTP/1.1. I was wondering if HTTP.jl...

client

Hey! Because of https://github.com/JuliaLang/julia/issues/46635, pressing `Ctrl+C` in the terminal no longer interrupts `HTTP.listen` in Julia 1.8, you need to hold down `Ctrl+C` to force a SIGINT. https://user-images.githubusercontent.com/6933510/191505065-cdc0b986-d08b-4767-a280-e02df5c6cd09.mov There are workarounds,...

enhancement
server

1. write direct to io rather than first creating strings - we need to be careful to `string` any numbers before doing this, but doing this selectively still reduces allocations...

A. For Kristoffer at #704 (unclear which Julia and HTTP versions used): ``` julia> @time using HTTP 0.113877 seconds (64.19 k allocations: 5.825 MiB, 7.65% compilation time) ``` vs. for...

For efficiency and to avoid allocations, I may want the ability to pre-allocate buffers and provide them to HTTP.request to be used directly when writing a response. I'm not exactly...

Hi All, I've attempted to solve some of the TTFX things in HTTP.jl. By adding the small workload, the time to first return of the request in went down by...

Before update I could save cookies to CSV file as is and restore them from the file by creating Dict and populate it with created cookies. Now I had to...