本文整理汇总了Java中okhttp3.internal.http.HttpHeaders.parseChallenges方法的典型用法代码示例。如果您正苦于以下问题:Java HttpHeaders.parseChallenges方法的具体用法?Java HttpHeaders.parseChallenges怎么用?Java HttpHeaders.parseChallenges使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类okhttp3.internal.http.HttpHeaders
的用法示例。
在下文中一共展示了HttpHeaders.parseChallenges方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: challenges
import okhttp3.internal.http.HttpHeaders; //导入方法依赖的package包/类
/**
* Returns the authorization challenges appropriate for this response's code. If the response code
* is 401 unauthorized, this returns the "WWW-Authenticate" challenges. If the response code is
* 407 proxy unauthorized, this returns the "Proxy-Authenticate" challenges. Otherwise this
* returns an empty list of challenges.
*/
public List<Challenge> challenges() {
String responseField;
if (code == HTTP_UNAUTHORIZED) {
responseField = "WWW-Authenticate";
} else if (code == HTTP_PROXY_AUTH) {
responseField = "Proxy-Authenticate";
} else {
return Collections.emptyList();
}
return HttpHeaders.parseChallenges(headers(), responseField);
}
示例2: testWithCorrectOrder
import okhttp3.internal.http.HttpHeaders; //导入方法依赖的package包/类
/**
* See: https://github.com/square/okhttp/issues/2780
*/
@Test
public void testWithCorrectOrder() {
// Strict RFC 2617 header
Headers headers = new Headers.Builder()
.add("WWW-Authenticate", "Digest realm=\"myrealm\", nonce=\"fjalskdflwejrlaskdfjlaskdjflaksjdflkasdf\", qop=\"auth\", stale=\"FALSE\"").build();
List<Challenge> challenges = HttpHeaders.parseChallenges(headers, "WWW-Authenticate");
assertEquals(1, challenges.size());
assertEquals("Digest", challenges.get(0).scheme());
assertEquals("myrealm", challenges.get(0).realm());
}
示例3: testWithWrongOrder
import okhttp3.internal.http.HttpHeaders; //导入方法依赖的package包/类
@Test
public void testWithWrongOrder() {
// Not strict RFC 2617 header.
Headers headers = new Headers.Builder()
.add("WWW-Authenticate", "Digest qop=\"auth\", realm=\"myrealm\", nonce=\"fjalskdflwejrlaskdfjlaskdjflaksjdflkasdf\", stale=\"FALSE\"").build();
List<Challenge> challenges = HttpHeaders.parseChallenges(headers, "WWW-Authenticate");
assertEquals(1, challenges.size());
assertEquals(1, challenges.size());
assertEquals("Digest", challenges.get(0).scheme());
assertEquals("myrealm", challenges.get(0).realm());
}