AsyncHttpClient 没有调用我的 POST API



我是Android新手,我正在使用AsyncHttpClient来调用POST API。但是 API 甚至没有被调用

下面是我的代码:

        AsyncHttpClient client = new AsyncHttpClient();
        client.addHeader("Key","random-key");
        JSONObject body = new JSONObject();
        body.put("clientId","random-client-id");
        body.put("question",question);
        HttpEntity entity = new StringEntity(body.toString());
        client.post( getApplicationContext(),"http://localhost:3000/api/Chats/GetAnswer", entity,"application/json", new JsonHttpResponseHandler() {
            @Override
            public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
                List<List<Answer>> answers = new ArrayList<>();
                try {
                    JSONArray answersJson = response.getJSONArray("answers");
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
            @Override
            public void onFailure(int statusCode, Header[] headers, String response, Throwable error) {
                Toast toast = Toast.makeText(getApplicationContext(),"Unable to get answers for the question sent",Toast.LENGTH_SHORT);
                toast.show();
            }
        });
    `

任何暗示我做错了什么??

已解决,问题似乎出在AndroidManifest.xml 由于我正在使用互联网并调用外部 API,因此我必须添加:

<uses-permission android:name="android.permission.INTERNET"/>

还有一件事。在本地工作并使用模拟器进行测试时,我们应该编写
http://10.0.2.2:port-number/而不是http://localhost:port-number/.因为安卓模拟器在虚拟机中运行。因此,localhost将是模拟器自己的环回地址。

请将调试器放在您的方法上并确保是否调用它,我认为您传递了错误的上下文值 在我看来,它比 AsyncHttpClient 更适合用户改造。如果要与 Web 服务通信,请使用"改造"。

相关内容

  • 没有找到相关文章

最新更新