Come rendere Autenticazione Http per API utilizzando Libreria Volley?Autenticazione Http in Android utilizzando la libreria volley
Ho provato il seguente codice .... getta Runtime Exception & Null Pointer exception..Please fornire suggerimenti
String url = "Site url";
String host = "hostName";
int port = 80;
String userName = "username";
String password = "Password";
DefaultHttpClient client = new DefaultHttpClient();
AuthScope authscope = new AuthScope(host, port);
Credentials credentials = new UsernamePasswordCredentials(userName, password);
client.getCredentialsProvider().setCredentials(authscope, credentials);
HttpClientStack stack = new HttpClientStack(client);
RequestQueue queue = Volley.newRequestQueue(VolleyActivity.this, stack);
È possibile utilizzare [droidQuery] (http://bit.ly/droidQuery) per eseguire richieste restanti asincrone con autenticazione. Guarda la documentazione di AjaxOptions [http://phil-brown.github.io/droidQuery/doc/self/philbrown/droidQuery/AjaxOptions.html#username (java.lang.String)) per aggiungere un nome utente e password per una richiesta. – Phil