我有一个后端,我试图使用okhttp发布密码“12345”的用户注册请求,但失败了。我花了几个小时才发现,实际上后端拒绝了响应代码为400的全数字密码。我发现这个问题的方式是在Python中发送相同的post请求,当我在Python shell中收到问题的详细信息时:>>>request.contentb'{"password1":["This password is too short. It must contain at least 8 characters.","This password is too common.","This password is entirely numeric."]}'我想知道我如何从请求的响应中获得Android Studio中的类似消息,如下所示: @Override public void onResponse(Call call, Response response) throws IOException { if (response.isSuccessful()) { final String jsonResponse = response.body().string(); MainActivity.this.runOnUiThread(new Runnable() { @Override public void run() { m_textView.setText("Successfull!"); } }); } else { } }在调试模式下,此响应具有许多属性,但我没有看到任何属性指向python带来的有用内容,我感谢任何建议,
添加回答
举报
0/150
提交
取消