Open kormanowsky opened 1 week ago
According to https://github.com/dfleury2/beauty/issues/24 You could do something like...
beauty::client client;
beauty::request request;
request.method(beast::http::verb::patch);
client.send_request(request, ...);
According to #24 You could do something like...
beauty::client client; beauty::request request; request.method(beast::http::verb::patch); client.send_request(request, ...);
That is true for the client. But the server does not support it. I didn’t mention this, though. Updated the issue 🤝
Hi, can you try this : https://github.com/dfleury2/beauty/tree/feature/add_patch_support I have added PATCH support in the server in this branch Regards,
Hi, this is working for me, thanks
Please add support for PATCH http method