httpbuilder icon indicating copy to clipboard operation
httpbuilder copied to clipboard

Results 55 httpbuilder issues
Sort by recently updated
recently updated
newest added

Java 8: IDE: IntelliJ IDEA Gradle 3 I have problem with SSL issue ``` import groovyx.net.http.RESTClient def client = new RESTClient() client.ignoreSSLIssues() def result = client.get([uri: "https://sacvo76l6b.execute-api.ap-northeast-1.amazonaws.com/"]) ``` It throws...

No description provided.

``` [WARNING] Dependency convergence error for commons-lang:commons-lang:2.4 paths to dependency are: +-test:test:1.0-SNAPSHOT +-org.codehaus.groovy.modules.http-builder:http-builder:0.7 +-net.sf.json-lib:json-lib:2.3 +-commons-lang:commons-lang:2.4 and +-test:test:1.0-SNAPSHOT +-org.codehaus.groovy.modules.http-builder:http-builder:0.7 +-net.sf.json-lib:json-lib:2.3 +-net.sf.ezmorph:ezmorph:1.0.6 +-commons-lang:commons-lang:2.3 [WARNING] Rule 2: org.apache.maven.plugins.enforcer.DependencyConvergence failed with message: Failed while...

http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.codehaus.groovy.modules.http-builder%22%20AND%20a%3A%22http-builder%22 Seems like 0.7.2 was never uploaded to maven central.

groovyx.net.http.RESTClient (inherited of groovyx.net.http.HTTPBuilder) uses deprecated API from org.apache.httpcomponents:httpclient lib - see HTTPBuilder.createClient(HttpParams param) method. It creates DefaultHttpClient which are deprecated in latest httpclient releases. Such API (like DefaultHttpClient and...

I have been trying to use a gradle plugin to make some REST calls which uses httpbuilder in backend, and i need to ignore all the SSL issues, but this...

Http-builder: 0.7.1 Language: Groovy Framework: Spock ``` import groovyx.net.http.HTTPBuilder import spock.lang.Specification /** * Created by Long Nguyen on 4/11/2017. * * Chatwork api documentation: http://developer.chatwork.com/ja/index.html */ class ChatworkApiSpec extends Specification...

A REST API endpoint often has a "baseURI" such as `https://api.mailgun.net/v3`. A concrete endpoint has e.g. the full URI `https://api.mailgun.net/v3/abc.ch/events`. It would now be very nice if we could write:...

please add 'application/hal+json' to ContentType.JSON HAL is expressed in JSON so adding hal+json to the content type should just work. Here's the proposed change in ContentType.java JSON("application/json","application/javascript","text/javascript", "application/hal+json"),

Was curious if anyone has seen this issue? I have tested this call with insomnia and it returns with 200 Ok. def https = new RESTClient('https://d.la10.salesforceliveagent.com/chat/rest/') def payload = [...