httpbuilder
httpbuilder copied to clipboard
API's are disabling TLS v1 in favor of the more secure protocols TLS 1.1 or TLS 1.2. Java has a system property for setting this, https.protocols, that this library completely...
I was working with a HTTPS API (Not sure SSL/TLS) but could not get it working. The [documentation here](https://github.com/jgritman/httpbuilder/wiki/SSL) mentions how to work with SSL but that's just bypassing/accepting the...
I built the project with mvn install but can't find a target to generate the correspondent JAR. I need the JAR for a project. Thanks.
Hi, I'm getting below error while running mvn install. ``` [INFO] No sources to compile [INFO] [INFO] --- gmaven-plugin:1.4:testCompile (build) @ http-builder --- [WARNING] Error injecting: org.codehaus.gmaven.plugin.compile.TestCompileMojo java.lang.TypeNotPresentException: Type org.codehaus.gmaven.plugin.compile.TestC...
It would be great if the built-in auth also supported pre-emptive authorisation, i.e.sending the Authorization header at once, instead for waiting for the server to ask for it. As everything,...
It would be neat to let the user choose whether to use SystemDefaultHttpClient instead of the current standard which is DefaultHttpClient. By using SystemDefaultHttpClient instead, all the standard Apache settings...
After checking out http-builder-0.7.2 tag, running mvn install gives: Results : Failed tests: RESTClientTest.testHead:45 assert ex.response.status == 404 | | | | | | 400 false | groovyx.net.http.HttpResponseDecorator@33182c98 groovyx.net.http.HttpResponseException: Bad...
Tests run: 80, Failures: 1, Errors: 11, Skipped: 9 [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:06 min [INFO] Finished at: 2015-05-04T02:09:51-02:00 [INFO] Final Memory: 12M/29M [INFO]...
Make it easier to specify connection and socket timeout parameters for an HttpBuilder instance.
The current documented way of using path variables is as follows: ``` resp = twitter.delete( path: "destroy/${postID}.json" ) ``` But what if the `postID` wasn't numeric and contained a forward...