Volley使用基本HTTP身份验证抛出AuthFailureError(401)

问题描述 投票:0回答:2

我正在尝试使用Volley库在Android应用程序中发出GET请求。此GET请求是使用基本HTTP身份验证验证帐户凭据。我在浏览器中验证了带有凭据的URL,因为它返回成功的XML。格式为:

http://username:[email protected]/api/account/verify_credentials.xml

其中usernamepassword显然代表真实的用户凭据。 Volley引发了这个错误:

 BasicNetwork.performRequest: Unexpected response code 401 for http://username:[email protected]/api/account/verify_credentials.xml

这是我处理请求的Android代码:

private static final String HTTP_PRE = "http://";
private static final String VERIFY_CREDENTIALS = "myanimelist.net/api/account/verify_credentials.xml";

public void verifyCredentials(String username, String password) {
    RequestQueue queue = Volley.newRequestQueue(context);
    String url = HTTP_PRE + username + ":" + password + "@" + VERIFY_CREDENTIALS;

    StringRequest stringRequest = new StringRequest(Request.Method.GET, url, new Response.Listener<String>() {

        @Override
        public void onResponse(String response) {
            processResponse(response);
        }
    }, new Response.ErrorListener() {

        @Override
        public void onErrorResponse(VolleyError error) {
            // handle error
            Log.d(TAG, "error: " + error.getMessage());
        }
    });

    queue.add(stringRequest);
}

这个覆盖getHeaders()方法的解决方案提供了相同的结果:How does one use Basic Authentication with Volley on Android?

这是我对该解决方案的实现:

@Override
public Map<String, String> getHeaders() throws AuthFailureError {
    Map<String, String> params = super.getHeaders();
    if (params == null){
        params = new HashMap<>();
    }
    String creds = String.format("%s:%s", username, password);

    params.put("Authorization", creds);

    return params;
}

在没有直接内置到URL中的凭据的情况下返回了此错误:

BasicNetwork.performRequest: Unexpected response code 401 for http://myanimelist.net/api/account/verify_credentials.xml

如果有人可以提供建议,我真的很感激。这是我第一次使用基本HTTP身份验证,所以我可能会遗漏一些明显的东西。

android get android-volley basic-authentication
2个回答
0
投票

我在第一个答案之后解决了这个问题:Http Authentication in android using volley library。我尝试了类似的和许多其他解决方案,但这是唯一有效的解决方案。


0
投票

基本身份验证使用BASE64编码。你错过了

String creds = String.format("%s:%s", username, password);
creds = Base64.encodeToString(creds.getBytes(), Base64.NO_WRAP);

Authorization HTTP标头需要指示使用的方法(Basic | Digest)。最后,您的标题应如下所示:

GET http://username:[email protected]/api/account/verify_credentials.xml
Accept: text/xml,text/plain
...
Authorization: Basic XXXXXXXXXXXXXX==
© www.soinside.com 2019 - 2024. All rights reserved.