Error Response 500 is not getting diaplayed when password and confirm password typed wrong

后端 未结 3 1538
感动是毒
感动是毒 2021-01-27 16:08

my response getting successfully displayed when password and confirm password typed right....but when it mismatched it is not going to else part....not showing toast anything...

3条回答
  •  情歌与酒
    2021-01-27 16:16

    Okay so you need to read the Error ResponseBody

        val errorBodyBuffer = Buffer()
        res.errorBody()?.writeTo(errorBodyBuffer)
        val errorBodyString = errorBodyBuffer.clone().readUtf8()
    

    Now you can use Gson or JsonObject to parse the errorBodyString

提交回复
热议问题