com.squareup.okhttp.OkAuthenticator Java Examples
The following examples show how to use
com.squareup.okhttp.OkAuthenticator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HttpAuthenticator.java From android-discourse with Apache License 2.0 | 6 votes |
/** * 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; }
Example #2
Source File: HttpAuthenticator.java From L.TileLayer.Cordova with MIT License | 5 votes |
/** * 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; }
Example #3
Source File: HttpAuthenticator.java From IoTgo_Android_App with MIT License | 5 votes |
/** * 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; }
Example #4
Source File: HttpAuthenticator.java From bluemix-parking-meter with MIT License | 5 votes |
/** * 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; }
Example #5
Source File: HttpAuthenticator.java From reader with MIT License | 5 votes |
/** * 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; }
Example #6
Source File: HttpAuthenticator.java From reader with MIT License | 5 votes |
/** * 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; }
Example #7
Source File: HttpAuthenticator.java From cordova-amazon-fireos with Apache License 2.0 | 5 votes |
/** * 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; }
Example #8
Source File: HttpAuthenticator.java From phonegapbootcampsite with MIT License | 5 votes |
/** * 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; }
Example #9
Source File: HttpAuthenticator.java From CordovaYoutubeVideoPlayer with MIT License | 5 votes |
/** * 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; }
Example #10
Source File: HttpAuthenticator.java From wildfly-samples with MIT License | 5 votes |
/** * 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; }
Example #11
Source File: HttpAuthenticator.java From crosswalk-cordova-android with Apache License 2.0 | 5 votes |
/** * 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; }