我在我的应用程序中对超过10种不同的连接类型使用了相同类型的请求,除此连接类型外,其他所有类型均有效,我不知道为什么,它们之间的唯一区别是发送的参数。如果我手动发送请求(通过在URL栏中键入数据),一切正常,但是当凌空连接尝试时,表明NoConnectionError
正在发生。我已经通过4G连接和WIFI连接尝试了此操作,但始终返回相同的结果。
更新
好的,所以我删除了发送经纬度的参数,现在服务器将响应发送回去。我发送纬度/经度有误吗?
public void updateLoc(final double latitude, final double longitude, final Context context)
{
if (context != null)
{
RequestQueue queue = Volley.newRequestQueue(context);
StringRequest stringRequest = new StringRequest(Request.Method.POST, URL_FOR_ACCOUNT,
new Response.Listener<String>() {
@Override
public void onResponse(String response)
{
Log.e("Network", "Response " + response);
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
if (error instanceof TimeoutError) {
Log.e(TAG,"Update Location Request timed out.");
}else if (error instanceof NoConnectionError){
Log.e(TAG,"Update Location no connection.");
} else if (error instanceof AuthFailureError) {
Log.e(TAG,"Auth failure");
} else if (error instanceof ServerError) {
Log.e(TAG,"Server Error");
} else if (error instanceof NetworkError) {
Log.e(TAG,"Network Error");
} else if (error instanceof ParseError) {
Log.e(TAG,"Parse Error");
}
}
}) {
//adding parameters to the request
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String, String> params = new HashMap<>();
params.put("command", "updateLoc");
params.put("appVersion", version);
params.put("androidVersionNumber", Integer.toString(Build.VERSION.SDK_INT));
params.put("email", userEmail);
params.put("lat", String.valueOf(latitude));
params.put("long", String.valueOf(longitude));
return params;
}
};
答案 0 :(得分:0)
好的,我弄清楚我的错误是什么,您无法发布诸如long
,string
,boolean
之类的内容,即使它们被强制转换为字符串名称。我更改了这一行:
params.put("long", String.valueOf(longitude));
此行:
params.put("lng", String.valueOf(longitude));
,一切恢复正常。我找不到任何文档说不能将其用作字符串名称。