I am trying to access del.icio.us api from android with the following code :
CredentialsProvider credentialsProvider = httpClient
.getCredentialsProvider();
if (credentialsProvider != null) {
credentialsProvider.setCredentials(SCOPE,
new UsernamePasswordCredentials(username, password));
}
......
HttpGet get = new HttpGet("https://api.del.icio.us/v1/posts/dates");
try {
httpResponse = httpClient.execute(get);
}catch(Exception e){}
It is very strange because I only get the result but a IllegalArgumentException or NoHttpResponseException.
If I change the url to other https website with no client authentication require then it works perfectly.
Does anybody have the same experience on this situation? I don't think my problem comes from proxy
cause I can data from other sites and also from android's browser.
Thankyou

