22

我可以在正常HTTPURLConnection请求上设置 Auth Header,如下所示:

URL url = new URL(source);  
HttpURLConnection connection = this.client.open(url);  
connection.setRequestMethod("GET");  
connection.setRequestProperty("Authorization", "Bearer " + token);  

这是 HttpURLConnection 的标准。上面的代码片段this.client是 Square 的一个实例OkHTTPClient这里)。

我想知道是否有一种OkHTTP特定的方式来设置 Auth Header?我看到了OkAuthenticator课程,但不清楚如何准确使用它/看起来它只处理身份验证挑战。

在此先感谢您的任何指点。

4

2 回答 2

17

如果您使用当前版本(2.0.0),您可以在请求中添加标头:

Request request = new Request.Builder()
            .url("https://api.yourapi...")
            .header("ApiKey", "xxxxxxxx")
            .build();

而不是使用:

connection.setRequestMethod("GET");    
connection.setRequestProperty("ApiKey", "xxxxxxxx");

但是,对于旧版本(1.x),我认为您使用的实现是实现这一目标的唯一方法。正如他们的变更日志所述:

版本 2.0.0-RC1 2014-05-23

新的请求和响应类型,每个类型都有自己的构建器。还有一个 RequestBody 类用于将请求正文写入网络,还有一个 ResponseBody 用于从网络读取响应正文。独立的 Headers 类提供对 HTTP 标头的完全访问。

于 2014-07-29T21:10:20.323 回答
-1

https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/com/squareup/okhttp/recipes/Authenticate.java

client.setAuthenticator(new Authenticator() {
  @Override public Request authenticate(Proxy proxy, Response response) {
    System.out.println("Authenticating for response: " + response);
    System.out.println("Challenges: " + response.challenges());
    String credential = Credentials.basic("jesse", "password1");
    return response.request().newBuilder()
        .header("Authorization", credential)
        .build();
  }

  @Override public Request authenticateProxy(Proxy proxy, Response response) {
    return null; // Null indicates no attempt to authenticate.
  }
});
于 2014-08-01T13:06:23.140 回答