我使用Android异步http发送一个post请求,并且响应似乎为null。我认为这是因为onSuccess of AsyncHttpResponseHandler没有接到电话。这是我的帖子请求:PersistentCookieStore myCookieStore = new PersistentCookieStore(act);RequestParams params = new RequestParams();
params.
但是,我得到了一个500内部服务器错误代码。我知道字符串正在发送base64编码,因为我已经将字符串打印到控制台,然后再发送。不管我是否包含它,服务器仍然向我发送错误。 //the first removes everything but base64 from the beggining of the string
//500
(page); } 现在,当我在一个单独的类中转到我的主方法,创建一个APIUtil对象并调用printMasteryPages方法时,我得到的输出中只有无效的500Exception in thread "main" com.robrua.orianna.type.exception.APIException: A INTERNAL_SERVER_ERROR (500我不期望任何人特别熟悉API,但是是什么导致了内部500?据我谷歌,这显然是一个服务器端的问题,