类com.squareup.okhttp.OkAuthenticator源码实例Demo

下面列出了怎么用com.squareup.okhttp.OkAuthenticator的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: android-discourse   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 * and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode, RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url) throws IOException {
    String responseField;
    String requestField;
    if (responseCode == HTTP_UNAUTHORIZED) {
        responseField = "WWW-Authenticate";
        requestField = "Authorization";
    } else if (responseCode == HTTP_PROXY_AUTH) {
        responseField = "Proxy-Authenticate";
        requestField = "Proxy-Authorization";
    } else {
        throw new IllegalArgumentException(); // TODO: ProtocolException?
    }
    List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
    if (challenges.isEmpty()) {
        return false; // Could not find a challenge so end the request cycle.
    }
    Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH ? authenticator.authenticateProxy(proxy, url, challenges) : authenticator.authenticate(proxy, url, challenges);
    if (credential == null) {
        return false; // Could not satisfy the challenge so end the request cycle.
    }
    // Add authorization credentials, bypassing the already-connected check.
    successorRequestHeaders.set(requestField, credential.getHeaderValue());
    return true;
}
 
源代码2 项目: L.TileLayer.Cordova   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码3 项目: IoTgo_Android_App   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码4 项目: bluemix-parking-meter   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码5 项目: reader   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码6 项目: reader   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码7 项目: cordova-amazon-fireos   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码8 项目: phonegapbootcampsite   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
源代码10 项目: wildfly-samples   文件: HttpAuthenticator.java
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
/**
 * React to a failed authorization response by looking up new credentials.
 *
 * @return true if credentials have been added to successorRequestHeaders
 *         and another request should be attempted.
 */
public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
    RawHeaders responseHeaders, RawHeaders successorRequestHeaders, Proxy proxy, URL url)
    throws IOException {
  String responseField;
  String requestField;
  if (responseCode == HTTP_UNAUTHORIZED) {
    responseField = "WWW-Authenticate";
    requestField = "Authorization";
  } else if (responseCode == HTTP_PROXY_AUTH) {
    responseField = "Proxy-Authenticate";
    requestField = "Proxy-Authorization";
  } else {
    throw new IllegalArgumentException(); // TODO: ProtocolException?
  }
  List<Challenge> challenges = parseChallenges(responseHeaders, responseField);
  if (challenges.isEmpty()) {
    return false; // Could not find a challenge so end the request cycle.
  }
  Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH
      ? authenticator.authenticateProxy(proxy, url, challenges)
      : authenticator.authenticate(proxy, url, challenges);
  if (credential == null) {
    return false; // Could not satisfy the challenge so end the request cycle.
  }
  // Add authorization credentials, bypassing the already-connected check.
  successorRequestHeaders.set(requestField, credential.getHeaderValue());
  return true;
}
 
 类所在包
 同包方法