Apache http客户端示例无法进行摘要式身份验证

时间:2016-12-27 00:24:12

标签: java apache-httpclient-4.x digest-authentication

我正在运行示例Apache hc(http客户端)进行摘要式身份验证。我没有改变任何东西,仅使用提供的样本:

public static void main(String[] args) throws Exception {
    HttpHost target = new HttpHost("httpbin.org", 80, "http");
    CredentialsProvider credsProvider = new BasicCredentialsProvider();
    credsProvider.setCredentials(
            new AuthScope(target.getHostName(), target.getPort()),
            new UsernamePasswordCredentials("user", "passwd"));
    CloseableHttpClient httpclient = HttpClients.custom()
            .setDefaultCredentialsProvider(credsProvider)
            .build();
    try {

        // Create AuthCache instance
        AuthCache authCache = new BasicAuthCache();
        // Generate DIGEST scheme object, initialize it and add it to the local
        // auth cache
        DigestScheme digestAuth = new DigestScheme();
        // Suppose we already know the realm name
        digestAuth.overrideParamter("realm", "me@kennethreitz.com");
        // Suppose we already know the expected nonce value
        digestAuth.overrideParamter("nonce", "b2c603bb7c93cfa197945553a1044283");
        authCache.put(target, digestAuth);

        // Add AuthCache to the execution context
        HttpClientContext localContext = HttpClientContext.create();
        localContext.setAuthCache(authCache);

        HttpGet httpget = new HttpGet("http://httpbin.org/digest-auth/auth/user/passwd");

        System.out.println("Executing request " + httpget.getRequestLine() + " to target " + target);
        for (int i = 0; i < 3; i++) {
            CloseableHttpResponse response = httpclient.execute(target, httpget, localContext);
            try {
                System.out.println("----------------------------------------");
                System.out.println(response.getStatusLine());
                System.out.println(EntityUtils.toString(response.getEntity()));
            } finally {
                response.close();
            }
        }
    } finally {
        httpclient.close();
    }
}

我得到:HTTP / 1.1 401 UNAUTHORIZED

如果我直接转到http://httpbin.org/digest-auth/auth/user/passwd,提示我输入user / passwd然后提供页面。所以网站运作正常。

知道出了什么问题吗?我有最新版本的库。

Fiddler Auth for browser(成功):

  

没有代理授权标头。

     

授权标题存在:摘要用户名=&#34;用户&#34;,   realm =&#34; me@kennethreitz.com" ;, nonce =&#34; 8ada87344eb5a10bf810bcc211205c24&#34;,   URI =&#34; /消化-AUTH / AUTH /用户/ passwd的&#34 ;,   响应=&#34; ad22423e5591d14c90c6fe3cd762e64c&#34 ;,   opaque =&#34; 361645844d957289c4c8f3479f76269f&#34;,qop = auth,nc = 00000001,   cnonce =&#34; 260d8ddfe64bf32e&#34;

Fiddler Auth我的代码(失败):

  

没有代理授权标头。

     

授权标题存在:摘要用户名=&#34;用户&#34;,   realm =&#34; me@kennethreitz.com" ;, nonce =&#34; 76af6c9c0a1f57ee5f0fcade2a5f758c&#34;,   URI =&#34; HTTP://httpbin.org/digest-auth/auth/user/passwd" ;,   response =&#34; 745686e3f38ab40ce5907d41f91823e6&#34;,qop = auth,nc = 00000001,   cnonce =&#34; 634b618d5c8ac9af&#34;,algorithm = MD5,   不透明=&#34; fe84ce11c48a7b258490600800e5e6df&#34;

2 个答案:

答案 0 :(得分:0)

此代码digestAuth.overrideParamter("realm", "some realm")应该有一些更改。要用您的服务器域替换"some realm"。请查看此question

答案 1 :(得分:0)

好的我工作了。你也必须设置一个cookie。 Thanks to this post寻求帮助。以下代码有效 - 但前提是您使用Fiddler

    public static void main(String[] args) throws Exception {

        CookieStore cookieStore = new BasicCookieStore();
        BasicClientCookie cookie = new BasicClientCookie("fake", "fake_value");
        cookie.setDomain("httpbin.org");
        cookie.setPath("/");
        cookieStore.addCookie(cookie);

        // https://stackoverflow.com/questions/27291842/digest-auth-with-java-apache-client-always-401-unauthorized

        HttpHost target = new HttpHost("httpbin.org", 80, "http");
        CredentialsProvider credsProvider = new BasicCredentialsProvider();
        credsProvider.setCredentials(
                new AuthScope(target.getHostName(), target.getPort()),
                new UsernamePasswordCredentials("user", "passwd"));

        CloseableHttpClient httpclient = HttpClients.custom()
                .setDefaultCookieStore(cookieStore)
                .setDefaultCredentialsProvider(credsProvider)
//              .setProxy(new HttpHost("127.0.0.1", 8888))
                .build();
        try {

            // Create AuthCache instance
            AuthCache authCache = new BasicAuthCache();
            // Generate DIGEST scheme object, initialize it and add it to the local
            // auth cache
            DigestScheme digestAuth = new DigestScheme();
            // Suppose we already know the realm name
            digestAuth.overrideParamter("realm", "me@kennethreitz.com");
            // Suppose we already know the expected nonce value
            digestAuth.overrideParamter("nonce", calculateNonce());
            authCache.put(target, digestAuth);

            // Add AuthCache to the execution context
            HttpClientContext localContext = HttpClientContext.create();
            localContext.setAuthCache(authCache);

            HttpGet httpget = new HttpGet("http://httpbin.org/digest-auth/auth/user/passwd");

            System.out.println("Executing request " + httpget.getRequestLine() + " to target " + target);
                CloseableHttpResponse response = httpclient.execute(target, httpget, localContext);
                try {
                    System.out.println("----------------------------------------");
                    System.out.println(response.getStatusLine());
                    System.out.println(EntityUtils.toString(response.getEntity()));
                } finally {
                    response.close();
                }
        } finally {
            httpclient.close();
        }
    }

    public static synchronized String calculateNonce() {

        Date d = new Date();
        SimpleDateFormat f = new SimpleDateFormat("yyyy:MM:dd:hh:mm:ss");
        String fmtDate = f.format(d);
        Random rand = new Random(100000);
        Integer randomInt = rand.nextInt();
        return org.apache.commons.codec.digest.DigestUtils.md5Hex(fmtDate + randomInt.toString());
    }
相关问题