gpt4 book ai didi

java - 发送带有负载 Volley 的 GET 请求

转载 作者:行者123 更新时间:2023-12-01 19:12:41 25 4
gpt4 key购买 nike

我想在 Android Studio 中使用 Volley 发出 GET 请求,并且在此请求中我想包含一个正文。问题是,当使用 GET 请求时,服务器中的正文为 None (我使用的是 Flask)。另一方面,当使用 POST 方法时,正文可以正确到达服务器。这是我的代码:

        RequestQueue queue = Volley.newRequestQueue(getApplicationContext());
String url = Globals.WINGS_VEHICLES_URL;

JSONObject payload = new JSONObject();
try {
payload.put("user_id", Globals.USER_ID);
} catch (JSONException e) {
e.printStackTrace();
}

final String requestBody = payload.toString();
System.out.println(requestBody);

StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
System.out.println(response);
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
error.printStackTrace();
}
}){
@Override
public String getBodyContentType() {
return "application/json";
}

@Override
public byte[] getBody() {
return requestBody.getBytes();
}


};

stringRequest.setRetryPolicy(new DefaultRetryPolicy(0, 0, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
queue.add(stringRequest);

这是 Volley 限制,还是我做错了什么?假设我使用 JSONObject 作为正文,非空。

最佳答案

请检查此答案
HTTP GET with request body

并使用POST Http方法发送Body!!

关于java - 发送带有负载 Volley 的 GET 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59458143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com