我想使用Volley库将请求发送到服务器。我看了很多教程。在他们中他们使用Post方法,我也想使用它。但他们按以下格式发送参数:
<link rel="stylesheet" type="text/css" href="jquery.fullPage.css">
所以我得到的错误代码1缺少参数 我的服务想要在字符串中获取两个参数。即fb_id和fb令牌。 我正在使用的程序是发送jason arry。
我猜对了,如果有,那么解决方案是什么? 请帮帮我......
答案 0 :(得分:0)
以下是满足您要求的众多方法之一:
JSONObject jsonRequest = new JSONObject();
try
{
jsonRequest.put("FullName","Gandalf The Grey");
jsonRequest.put("LoginPassword","YouShallNotPass");
} catch (JSONException e)
{
e.printStackTrace();
}
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, URL, jsonRequest, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response)
{
//do something
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});