RosHTTP
RosHTTP copied to clipboard
Unified Scala.js + Scala HTTP client API
After adding the resolver and dependency to build.sbt and running the sbt "update" command, I get this. download error: Caught javax.net.ssl.SSLHandshakeException (PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed) while...
I packaged a fork of version 3.0 (https://github.com/nondeterministic/RosHTTP) and created a new 3.0 Maven package, so that people can still use and/or link to this wonderful library: ``` libraryDependencies +=...
Hi, I am currently migrating my stuff to ScalaJS 1.0.0-M3 Some libraries, such as **utest** already provide support for the upcoming major version: https://github.com/lihaoyi/utest/commit/9ccccc391fdad24e0b3d653aa48199bac629cd69 Unfortunately I need to switch to...
Hello, I like this library, thanks for creating it! When running in the browser, would it be reasonable to provide default HttpRequest parameter values based off of `document.location` if the...
When a request is created from an URI containing an escaped ? the ? will still be interpreted as the start of a query string, e.g. `HttpRequest("http://localhost/foo%3Fbar")` fails to access...
The browser tests in [scala-js-env-selenium](https://github.com/scala-js/scala-js-env-selenium) are broken due to the testing environment being too unstable. We need something robust to test the browser backend. Ideally something that works in travis....
The current JVM backend (HttpURLConnection) has too many drawbacks including: - No `PATCH` method (or any other non-standard method as a matter of fact). See #67 for a workaround -...
As per the [Node doc](https://nodejs.org/api/http.html#http_message_headers): > `set-cookie` is always an array. Duplicates are added to the array. Yet `SimpleHttpResponse.headers` are an `HeaderMap[String]`. But at runtime, `headers.get("Set-Cookie")` returns a `js.Array[String]` instead...
Having our own JSON ast implementation is redundant and for the sake of preserving human sanity we should use [json4s](http://json4s.org/) instead.