我正在使用sitebricks http客户端向休息服务发送http请求。我的问题是如何使用删除发送有效负载数据? post方法接受数据作为参数
WebClient<SubnetId> client = web().clientOf(deleteUser()).transports(User.class).over(Json.class);
//client.post(user) <-- this is OK !
client.delete(); // <-- delete does not accepts user !!!