Basic Authentication
Proxima
If the client key is the username what is the password?
String credentials = ClientMap.PROXIMA_KEY;
AndroidHttpClient client = AndroidHttpClient.newInstance("AndroidAgent");
HttpGet request = new HttpGet(uri);
String credentials = username + ":" + password;
String base64EncodedCredentials = Base64.encodeToString(credentials.getBytes(), Base64.NO_WRAP);
request.addHeader("Authorization", "Basic " + base64EncodedCredentials);
HttpResponse response;