cpprestsdk
cpprestsdk copied to clipboard
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and i...
As titled.
Supporting for MinGW on Windows is a long-standling feature request for the cpprestsdk project. This PR makes the codebase compilable with mingw-w64 from msys2, include main library, test cases and...
Please accept this contribution adding the standard Microsoft SECURITY.MD :lock: file to help the community understand the security policy and how to safely report security issues. GitHub uses the presence...
I have image in the form of raw BYTE* data I want to convert it into jpeg and webp encoding and send it as a response. Is that possible??
In our software we make HEAD requests before downloading files. In order to test this code, I created a small mocking server using cpprest. On Windows, I have no issues...
With the latest Visual Studio 2022 Preview, `stdext::checked_array_iterator` has been deprecated. This results in compile errors like the following when including cpprestsdk's containerstream.h header: ``` 11>...\include\cpprest\containerstream.h(404,47): warning C4996: 'stdext::checked_array_iterator': warning...
sea@ubuntu:~$ vcpkg install cpprestsdk Computing installation plan... The following packages will be built and installed: cpprestsdk[compression,core]:[email protected] Detecting compiler hash for triplet x64-linux... Restored 0 package(s) from /home/sea/.cache/vcpkg/archives in 1.4 ms....
The C++ REST SDK does not provide a direct interface for creating multipart form data. I am unable to add both a file stream and key-value pairs to the body...
Hi, sir or madam. could you provide a demo for async get/post client request with a custom response handle function? assume the request url is: https://api.coinex.com/v1/market/detail\?market\=BTCUSDT the response is a...
While we use web::json::value::object contains double value such as 8.0, the serializing result would be 8. After deserialization, it become an integer with value 8, not a double as it...