cpprestsdk icon indicating copy to clipboard operation
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...

Results 217 cpprestsdk issues
Sort by recently updated
recently updated
newest added

On Main Page: https://github.com/microsoft/cpprestsdk (09/26/2023) To use from CMake: ` cmake_minimum_required(VERSION 3.9) project(main) find_package(cpprestsdk REQUIRED) add_executable(main main.cpp) target_link_libraries(main PRIVATE cpprestsdk::cpprest) ` Is missing the linker Option "-lcrypto", thus it should...

i am working on the websocket disconnect checking, and i found that when i turn off the network, those msg suppose will not send(since the network are disconnected) will block...

This was reported to me by "Jag S" over email trying to print 2000-12-31. The cause appears very similar to https://github.com/microsoft/cpprestsdk/pull/1550/files/198b034679cf7f962e242977b99ea5c63ad9eb03 I think this will cause a denial of service...

So, don't be like me. Look at the README file first bold paragraph. And don't open issues here, there are better ways to spend your time.

The library has genesis with support of C++/CX and assumes UWP is C++/CX and is replete with __cplusplus_winrt. Which should'nt be the case as there are other c++ variants like...

I've install cpprestsdk with vcpkg, and executed vcpkg.exe integrate install. But when I #include in visual studio 2019, It has some link error. `Error | LNK2019 | unresolved external symbol...

BingRequest sample application (under "samples" directory) compiles successfully but it throws runtime exception error. Platform: Win x86, compiler: Visual Studio Professional 2017 version 15.9.20

Hi, In our production code we are getting crash and looking for some support with finding root cause. Any advice is more than welcome libcpprest in version 2.10. ``` #0...

### `http_exception` Should Derive from `std::runtime_error` First of all, I want to say thank you for creating such an outstanding library. The cpprestsdk is a comprehensive toolkit that offers a...

ubuntu 16.4 LTS install cpprestsdk use: sudo apt-get install libcpprest-dev write "find_package(cpprestsdk REQUIRED)" to the CMakeLists.txt,there some build error: "By not providing "Findcpprestsdk.cmake" in CMAKE_MODULE_PATH this project" how to write...