scalaj-http
scalaj-http copied to clipboard
Simple scala wrapper for HttpURLConnection. OAuth included.
Hi, I started using this library to perform oauth1 with [Bitbucket Server (previously Stash)](https://www.atlassian.com/software/bitbucket/enterprise/data-center) The code I needed was pretty much the same you have but with some slight changes...
It appears that scalaj may not support Proxies with authentication. After attempting to set a `Proxy-Authorization` header and passing an appropriate proxy config to the request object, I get the...
Is there any way to print the full `HttpRequest` for the sake of debugging? I'm trying to figure out why a request that I have that works fine in curl...
Do you have plans for http pool support?
can we have something like ``` case class HttpStatusException( code: Int, statusLine: String, body: String ) extends RuntimeException(code + " Error: " + statusLine + "Body: " + body) ```...
This is the code I use to connect to a remote server: val postUrl = "https://api.luftdaten.info/v1/push-sensor-data/" val response = Http(postUrl).headers(Seq("X-PIN" -> "1", "X-Sensor" -> s"fijnstof-${report.id}")).postForm(Seq("P1" -> report.pm10.toString, "P2" -> report.pm25.toString)).option(HttpOptions.allowUnsafeSSL).asString...
Is there a way to get the final url after following all redirects?
**scalaj-http version:** 2.3.0 **scala version:** 2.11 When I try to make vanilla https request in AWS Lambda (Java 8 Runtime) I've got the following error: ``` invalid key or spec...
it currently signs and adds the Authorization header at the point at which it's called, so further changes to the request are not part of the signature and that will...