Hello, I'm trying to figure out which URL I was directed to. I'm using the following code and it seems to hide the redirect.
HttpPost httpPost = new HttpPost(url);
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httpPost);
Thanks, Erik