DONAZIONE
AIUTACI A CRESCERE:
DONAZIONE LIBERÀ
DONAZIONE LIBERÀ
MENU
I postatori più attivi del mese
Nessun utente |
Script Andorid per effettuare una richiesta di tipo HTTP con Credenziali
Pagina 1 di 1
Script Andorid per effettuare una richiesta di tipo HTTP con Credenziali
Questo scritp per Android vi permette di implementare all'interno della vostra app la possibilità di effettuare una richiesta http con credenziali.
Buon Lavoro
- Codice:
private String mServer;
private String mServerUrl;
private int mPort = 8551;
private String mUser;
private String mPassword;
private HttpResponse makeRequest(String urlPath) throws Exception {
HttpClient httpclient;
HttpParams httpParameters;
HttpGet request;
int timeoutConnection = 10000;
int timeoutSocket = 10000;
httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters,
timeoutConnection);
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
httpclient = new DefaultHttpClient(httpParameters);
Credentials creds = new UsernamePasswordCredentials(mUser, mPassword);
((AbstractHttpClient) httpclient).getCredentialsProvider().setCredentials(
new AuthScope(mServer, mPort), creds);
request = new HttpGet(mRequestURL);
HttpResponse res = httpclient.execute(request);
httpclient.getConnectionManager().shutdown();
return res;
}
private String processRequest(HttpResponse resp) throws Exception{
int status = resp.getStatusLine().getStatusCode();
if (status == 200){
//Get the body
return getBodyFromResponse(resp);
} else if (status == 400) {
//Bad Request
throw new Exception("Errore: errore HTTP 400");
} else if (status == 401) {
//Unauthorized
throw new Exception("Errore: errore HTTP 401 - nome server
errato");
} else if (status == 403) {
//Forbidden
throw new Exception("Errore: HTTP 403
} else if (status == 500) {
//Internal Server Error
throw new Exception("Errore: HTTP 500");
} else {
throw new Exception("Errore sconosciuto: Lo status " + status);
}
}
private String getBodyFromResponse(HttpResponse resp) throws Exception{
ResponseHandler<String> handler = new BasicResponseHandler();
try {
return handler.handleResponse(resp);
} catch (IOException e) {
throw new Exception ("Errore HTTP 200. Errore conversione. " +
e.getMessage());
} catch (Exception e) {
throw new Exception ("Error: HTTP 200. Errore conversione. " +
e.getMessage());
}
}
Buon Lavoro
Argomenti simili
» Script Andorid per disabillitare una APK
» Script Andorid per caricare un immagine dal Web
» Script Andorid per mantenere acesso lo schermo
» Script Andorid per riconoscere le chiamate in entrata
» Script Andorid per comporre un numero telefonico
» Script Andorid per caricare un immagine dal Web
» Script Andorid per mantenere acesso lo schermo
» Script Andorid per riconoscere le chiamate in entrata
» Script Andorid per comporre un numero telefonico
Pagina 1 di 1
Permessi in questa sezione del forum:
Non puoi rispondere agli argomenti in questo forum.