swish
swish copied to clipboard
C++ HTTP requests for humans
I get the error bellow when trying out the example in the README.md `The following Error occured: Unsupported protocol`
Add vcpkg support for getting libcurl, and it's dependencies.
How I can upload file to server use swish? ``` auto client = Client(); auto multipartFormData = MultipartFormData(&client); multipartFormData = std::move(multipartFormData.PushField("imageid", "8948")); multipartFormData = std::move(multipartFormData.PushField("file_type", "img")); multipartFormData = std::move(multipartFormData.AttachFile("file", "test1.png"));...