通过 gson 从请求正文中获取 json

Get json from request body by gson

如何获取 json 请求正文?

   App.getApi().method(data).enqueue(new Callback<Obj>() {
        @Override 
        public void onResponse(Call<Obj> call, Response<Obj> response){
             // print here 
        }
        ...
   };

如果您在使用改装时尝试打印请求/响应,您可以启用日志记录检查此 article 是否相同。