身份验证错误:无法响应以下任何挑战:{} Android - 401 未经授权编辑:
身份验证错误:无法响应以下任何挑战:{} Android - 401 未经授权
我已经从这个链接中获取了参考 身份验证错误 在Android上使用HttpPost与DefaultHttpClient
我正在开发Drupal支持的Android应用程序。在这种情况下,我正在将数据从Android应用程序发送到drupal网站 - JSON格式的Web服务。现在,我可以从Drupal Webservice读取JSON数据并将其写入我的Android应用程序中。但是,在android的drupal上编写时会遇到问题,它会生成带有状态代码的响应。
401 未经授权
从Android原生应用程序,它生成401 ,而当我发起AJAX请求时,它从Android的phonegap开始,它可以完美地工作并在drupal网站上写一篇文章或页面。所以这意味着Web服务可以完美地工作&
我的手机差距Android应用程序工作完美,Android原生JAVA应用程序存在问题,我在Android上运行我的Android应用程序2.3.4 - >三星Galaxy S Plus - 三星GT-I9001
这是我的java android代码。
==============================
String url = "XXX";
strResponse1 = makeWebForPostIdea(url,title,body);
public static String makeWebForPostIdea(String url, String title,String body)
{
JSONStringer jsonobject = null;
JSONObject json = null;
JSONObject jsonnode = null;
DefaultHttpClient client = new DefaultHttpClient();
Credentials creds = new UsernamePasswordCredentials("username", "password");
client.getCredentialsProvider().setCredentials(new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT), creds);
HttpPost post = new HttpPost(url);
System.out.println("value of the post =============> "+post);
try {
JSONObject jsonvalue = new JSONObject();
jsonvalue.put("value", body.toString());
JSONArray array = new JSONArray();
array.put(jsonvalue);
jsonnode = new JSONObject();
jsonnode.put("und", array);
System.out.println("@@@@@@2 jsonnode=======>"+jsonnode.toString());
} catch (JSONException e3) {
// TODO Auto-generated catch block
e3.printStackTrace();
}
try {
jsonobject = new JSONStringer().array().object().key("und").object().key("0").object().key("value").value(body).endObject().endObject().endObject().endArray();
System.out.println("=============>"+jsonobject);
} catch (JSONException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("type","page"));
params.add(new BasicNameValuePair("title",title));
params.add(new BasicNameValuePair("language","und"));
params.add(new BasicNameValuePair("body",jsonobject.toString()));
System.out.println("value of the params =============> "+params);
UrlEncodedFormEntity formEntity = null;
try {
formEntity = new UrlEncodedFormEntity(params);
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
post.setEntity(formEntity);
try {
HttpResponse response = client.execute(post);
int statusCode = response.getStatusLine().getStatusCode();
System.out.println("=========> statusCode post idea=====> "+statusCode);
if (statusCode == HttpStatus.SC_OK)
{
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
return iStream_to_String(is);
}
else
{
return "Hello This is status ==> :"+String.valueOf(statusCode);
}
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public static String iStream_to_String(InputStream is1) {
BufferedReader rd = new BufferedReader(new InputStreamReader(is1), 4096);
String line;
StringBuilder sb = new StringBuilder();
try {
while ((line = rd.readLine()) != null) {
sb.append(line);
}
rd.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String contentOfMyInputStream = sb.toString();
return contentOfMyInputStream;
}
}
}
这是我得到的日志。
08-09 12:41:29.063: I/System.out(336): value of the post =============> org.apache.http.client.methods.HttpPost@4053c3c8
08-09 12:41:29.093: I/System.out(336): @@@@@@2 jsonnode=======>{"und": [{"value":"ddddddd"}]}
08-09 12:41:29.093: I/System.out(336): =============>[{"und":{"0":{"value":"ddddddd"}}}]
08-09 12:41:29.103: I/System.out(336): value of the params =============> [type=page, title=hhhh, language=und, body=[{"und":{"0":{"value":"ddddddd"}}}]]
08-09 12:41:30.913: W/DefaultRequestDirector(336): Authentication error: Unable to respond to any of these challenges: {}
08-09 12:41:30.913: I/System.out(336): =========> statusCode post idea=====> 401
08-09 12:41:30.924: I/System.out(336): =========> Response from post idea => Hello This is status ==> :401
这是我的PhoneGap Ajax请求,它可以完美地工作。
$('#page_node_create_submit').live('click',function(){
var title = $('#page_node_title').val();
//if (!title) { alert('Please enter a title.'); return false; }
var body = $('#page_node_body').val();
//if (!body) { alert('Please enter a body.'); return false; }
// BEGIN: drupal services node create login (warning: don't use https if you don't have ssl setup)
$.ajax({
url: "XXX",
type: 'post',
data: 'node[type]=page&node[title]=' + encodeURIComponent(title) + '&node[language]=und&node[body][und][0][value]=' + encodeURIComponent(body),
dataType: 'json',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('page_node_create_submit - failed to login');
console.log(JSON.stringify(XMLHttpRequest));
console.log(JSON.stringify(textStatus));
console.log(JSON.stringify(errorThrown));
},
success: function (data) {
$.mobile.changePage("index.html", "slideup");
}
});
// END: drupal services node create
return false;
});
=================================================================================
编辑:
我已经尝试了Apache httpclient的各种方法来解决我的错误。在这段时间里,我做了一些研究,在谷歌上搜索,发现了一些有趣的东西。
首先,我发现Android-Google官方不推荐我在代码中使用的Apache HttpClient。检查此链接。在那链接消息中,来自Dalvik团队的Jesse Wilson。他们建议使用HttpURLConnection而不是DefaultHttpClient,并写道Android团队将不再开发Apache httpclient 。所以这是我使用的旧版本。
http://android-developers.blogspot.in/2011/09/androids-http-clients.html
我从这个链接中找到的第二件事。这表明Android附带Apache的HttpClient 4.0 Beta2,在基本身份验证方面存在一个陷阱。我使用的身份验证方法是 HttpClient 3.x ,我从此链接中发现了这一点。检查链接。http://hc.apache.org/httpclient-3.x/authentication.html#Preemptive_Authentication
所以版本问题。
http://dlinsin.blogspot.in/2009/08/http-basic-authentication-with-android.html
我还发现了一些可能解决此问题的链接。
http://ogrelab.ikratko.com/using-newer-version-of-httpclient-like-4-1-x/
从这些链接中,我得出了一个结论,如果我们把Apache HttpClient升级到最新的稳定版本,那么这个问题就可以解决了。
但这直接是不可能的,因为Android团队已经正式停止了对Apache httpclient的支持。
有了这个链接,就可以解决了。我还没有尝试过,但我正在努力。
它是可以帮助升级Android中的httpclient版本的库。
另一种解决方案可能是使用HttpURLConnection。我也在努力。
但是,在stackoverflow和Internet上的大多数人似乎都使用DefaultHttpCLient和Android。当然,它也在我的整个应用程序中与我合作,包括登录,注册,从服务器和会话读取以及其他功能。只是它不能直接将一些文章发布到我的服务器Drupal网站。在服务器上注册用户期间,它与POST请求完美配合。
所以朋友们,对此有什么建议吗?为什么它不仅适用于发布文章?