requests-scala
requests-scala copied to clipboard
A Scala port of the popular Python Requests HTTP client: flexible, intuitive, and straightforward to use.
Does this library work behind a corporate proxy. I think the keywords in python are somehow verify="cert/location",proxies="proxy"... couldn't see anything in the docs so assuming it's not currently implemented. Will...
It seems like the library is discarding the `data` field when making `GET` requests. I understand that this doesn't really conform to the older [RFC2616](https://datatracker.ietf.org/doc/html/rfc2616) spec but some http clients...
When trying to setup gzip request, I get from server a 400 response: ``` The request content was malformed: The request's encoding is corrupt at requests.Requester$$anon$1.readBytesThrough(Requester.scala:356) at geny.Readable.writeBytesTo(Writable.scala:93) at geny.Readable.writeBytesTo$(Writable.scala:93)...
I am a novice in network protocol. In other programming languages (such as Python or Julia), I can send a request with authentication using code similar to the following ```python...
I've noticed a regression since 0.6.5 where the receiving host simply crashes with a 500 error. The change was introduced in https://github.com/com-lihaoyi/requests-scala/commit/dabd72858c3dde1762543ec9c215a2d874355e26. From what I've been able to read, there's...
Maybe I missed it, but seems there is no support to add hostname verifier when using ssl
I'm confused about the time unit in timeouts. Apparently, in python, these are seconds. ```py r = requests.get(w, verify=False, timeout=10) # 10 seconds ``` I used in my config `FiniteDuration`...
According to [your code](https://github.com/lihaoyi/requests-scala/blob/master/requests/src/requests/Model.scala#L155), you need to calculate content-length for multi-part uploads. After doing that, you specifically upload multipart as chunked data with no content-length. This has led to issues...
Hi, I just found an odd behaviour of requests-scala. When using the library to call the Spotify API, it throws the following exception: ``` Caused by: java.lang.IllegalArgumentException: Empty cookie header...