I am looking for some help! I have some code doing server auth and retrieving the response from server. When i execute it in eclipse in my java project I've got reddirrect response like :
<html><head><meta http-equiv="refresh" content="0;url=SiteIamLoggingPageURL/"/></head></html>
But when i am excecuting the same code in my android app, ive got response equal to the failed login scenario.
HttpPost post = new HttpPost(loginPageAdress);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
//nameValuePairs.add(new BasicNameValuePair("remember", "1"));
nameValuePairs
.add(new BasicNameValuePair("email", "email"));
nameValuePairs.add(new BasicNameValuePair("password", "password"));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs, "utf-8"));
StringBuilder stringBuilder = new StringBuilder();
HttpResponse response = client.execute(post, httpContext);
BufferedReader rd = new BufferedReader(new InputStreamReader(response
.getEntity().getContent(), "UTF-8"));
String line = "";
while ((line = rd.readLine()) != null) {
stringBuilder.append(line).append("\n");
}
System.out.println(stringBuilder.toString());
What is the problem? o.o Thank you for your time!

response.getStatusLine().getStatusCode();Your authentication code doesn't look quite right to me. The response status code will tell some basic information about the authentication type server used for login. – yorkw Jul 3 '12 at 23:30