使用Apache HttpClient 4 簡化搶佔式基本驗證
搶佔式基本驗證允許客戶端在初始請求中發送其憑證,而不是等待來自伺服器的身份驗證質詢。雖然 Apache HttpClient 版本 3 為此目的提供了一個簡單的 setAuthenticationPreemptive(true) 方法,但版本 4 引入了一個涉及 BasicHttpContext 的更複雜的解決方案。
要簡化身份驗證過程,請考慮以下方法:
如果您需要對單一請求進行搶先身份驗證:
<code class="java">String username = ... String password = ... UsernamePasswordCredentials creds = new UsernamePasswordCredentials(username, password); HttpRequest request = ... request.addHeader(new BasicScheme().authenticate(creds, request));</code>
此方法手動將適當的Authorization標頭會新增到請求中,從而無需使用BasicHttpContext。
以上是如何使用 Apache HttpClient 4 實作搶佔式基本驗證?的詳細內容。更多資訊請關注PHP中文網其他相關文章!