Skip to content

Instantly share code, notes, and snippets.

@thiagocaiubi
Created July 20, 2011 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagocaiubi/1096040 to your computer and use it in GitHub Desktop.
Save thiagocaiubi/1096040 to your computer and use it in GitHub Desktop.
import br.com.caelum.restfulie.Response;
import br.com.caelum.restfulie.Restfulie;
public class RestfulieClient {
public static void main(String[] args) {
String url = "https://esitef-homologacao.softwareexpress.com.br/e-sitef/iniciarTransacao.se";
Response response = Restfulie.at(url).get();
System.out.println(response.getContent());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment