Created
June 8, 2012 05:33
-
-
Save tinoviena/2893779 to your computer and use it in GitHub Desktop.
Groovy script to make HTTP request using Java standard library.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URL url = new URL(urlTarget); | |
HttpURLConnection connection; | |
method = "GET" // POST, PUT, ... | |
data = "" // for GET, otherwise e..g JSON | |
connection.setDoOutput(true); | |
connection.setDoInput(true); | |
connection.setRequestMethod(method); | |
connection.setRequestProperty("Content-Length", "" + Integer.toString(data.getBytes().length)); | |
// connection.addRequestProperty("Accept", "application/json") | |
// connection.addRequestProperty("Content-Type", "application/json") | |
connection.connect(); | |
DataOutputStream wr = new DataOutputStream (connection.getOutputStream ()); | |
wr.writeBytes (data); | |
wr.flush (); | |
wr.close (); | |
println "responseCode: " + connection.getResponseCode() | |
InputStream response = connection.getInputStream(); | |
String content = new java.util.Scanner(response).useDelimiter("\\A").next(); | |
println(content); | |
return content; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment