String url = Oauth.URL + "/listings/"+listingID+"/images";
HttpPost request = new HttpPost(url);
mConsumer.sign(request);
MultipartEntity entity = new MultipartEntity(HttpMultipartMode.STRICT);
File file = new File(c.getFilesDir().toString()+"/photo.jpg");
FileBody imageBody = new FileBody(file, "image/jpeg");
entity.addPart("image", imageBody);
request.setEntity(entity);
HttpClient httpClient = Oauth.getSecureClient();
org.apache.http.HttpResponse response = httpClient.execute(request);
BufferedReader in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String reply = in.readLine();
Log.d(LOG_TAG, reply);