new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthPolicy.BASIC),
new UsernamePasswordCredentials(key, "")
);
// Add a request interceptor so we don't have to set the credentials on every request.
client.addRequestInterceptor(new AuthenticationInterceptor(), 0);
return new Clever(client);
}