As mentioned above, it is obvious that the format of the obtained response message is wrong when it is converted through fastjson in the process of using okhttp.
Should use
String body = response.body().string();
replace
String body = response.body().toString();