[JavaDoc] (http://javadoc.basic-http-client.googlecode.com/git/docs/index.html) | Blog post
A minimal HTTP client that uses java.net.HttpURLConnection to make requests. It features a simple interface for making Web requests. There is also an AsyncHttpClient which supports making asynchronous requests with retries and exponential backoff, and AndroidHttpClient which wraps requests in an Android AsyncTask so that requests can be safely initiated from the UI thread.
<uses-permission android:name="android.permission.INTERNET" />
to !AndroidManifest.xmlgit clone https://github.com/turbomanage/basic-http-client.git
In your Java project (including App Engine for Java), add this to your pom.xml:
<dependency>
<groupId>com.turbomanage.basic-http-client</groupId>
<artifactId>http-client-java</artifactId>
<version>0.89</version>
</dependency>
If your Android project builds with Gradle, add this to your app's gradle.build:
dependencies {
...
implementation 'com.turbomanage.basic-http-client:http-client-android:0.89'
}
// Example code to login to App Engine dev server
public void loginDev(String userEmail) {
BasicHttpClient httpClient = new BasicHttpClient("http://localhost:8888");
ParameterMap params = httpClient.newParams()
.add("continue", "/")
.add("email", userEmail)
.add("action", "Log In");
httpClient.addHeader("name", "value");
httpClient.setConnectionTimeout(2000);
HttpResponse httpResponse = httpClient.post("/_ah/login", params);
}
// Example code to log in to App Engine production app
public void loginProd(String authToken) {
BasicHttpClient httpClient = new BasicHttpClient("http://localhost:8888");
ParameterMap params = httpClient.newParams()
.add("auth", authToken);
HttpResponse httpResponse = httpClient.get("/_ah/login", params);
System.out.println(httpResponse.getBodyAsString());
}
The project includes an !AsyncTask wrapper for Android so that requests can be safely initiated on the UI thread with a callback. Example:
AndroidHttpClient httpClient = new AndroidHttpClient("http://192.168.1.1:8888");
httpClient.setMaxRetries(5);
ParameterMap params = httpClient.newParams()
.add("continue", "/")
.add("email", "test@example.com")
.add("action", "Log In");
httpClient.post("/_ah/login", params, new AsyncCallback() {
@Override
public void onSuccess(HttpResponse httpResponse) {
System.out.println(httpResponse.getBodyAsString());
}
@Override
public void onError(Exception e) {
e.printStackTrace();
}
});
The basic-http-client project simply wraps java.net.UrlConnection
. On App Engine, this in turn wraps the App Engine URLFetch API. The net result is that you can use version 0.89 or later to make outbound requests from your server application.
In AndroidHttpClient, java.net.CookieManager
is enabled by default above API version 8 (when it was introduced) in order to save cookies between requests and resend them just like a browser does.
Prior to version 0.89, BasicHttpClient
would also automatically enable java.net.CookieManager
. However, this is not supported on App Engine, so in version 0.89 and later, you must explicitly enable cookie support. Before making the first request, simply call the static method
AbstractHttpClient.ensureCookieManager();
The key method is AbstractHttpClient.doHttpMethod(String path, HttpMethod httpMethod, String contentType, byte[] content). This is the method that actually drives each request, catches any exceptions, and rethrows them wrapped in an HttpRequestException. It delegates most of the request lifecycle to a RequestHandler instance. To override the default behaviors (say, to provide your own error handler or custom stream reader/writer), simply extend the BasicRequestHandler like this:
BasicHttpClient client = new BasicHttpClient(baseUrl, new BasicRequestHandler() {
@Override
public boolean onError(HttpResponse res, Exception e) {
e.printStackTrace();
return true; // if recoverable
}
});
To create an async client for another platform, simply subclass AsyncHttpClient and provide it with an instance of a AsyncRequestExecutorFactory suitable for your platform. See the com.turbomanage.httpclient.android package for the Android implementation which uses AsyncTask.