This is related to another question about URL shortener. The code for URL shortener works fine, on both standalone Java and on Android. However, when re-using this code to communicate to a custom Google App Engine application, the code works perfectly fine on standalone Java, but produces an empty self.request.body when used from Android. Why?
To reproduce this behaviour, run the code below, on android, once with Google shortener URL:
https://www.googleapis.com/urlshortener/v1/url, and once with a custom URL to a web server.
The same code on standalone java produces exactly the same request (as expected) in both cases. On Android, in the case of custom URL, the content body is empty and content-length is not set.
I'm running google-api-java-client 1.2.2-alpha, with jackson 1.7.1.
The code snippet:
HttpTransport transport = GoogleTransport.create();
HttpRequest request = transport.buildPostRequest();
// Change this URL below from Google Shortener URL, to a custom URL,
// and the code on Android produces an empty body and Content-Length is not set
request.setUrl("GoogleAppEngine url goes here");
JsonCContent content = new JsonCContent();
GenericData data = new GenericData();
data.put("id", "whatever");
content.data = data;
request.content = content;
HttpResponse response = request.execute();