Java HttpClient Basic Credential 认证详解编程语言

HttpClient client = factory.getHttpClient(); //or any method to get a client instance 
Credentials credentials = new UsernamePasswordCredentials(username, password); 
client.getState().setCredentials(AuthScope.ANY, credentials);

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15961.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论