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 186 cpprestsdk issues
Sort by recently updated
recently updated
newest added

I'm requesting an API via cpprestsdk. The API works fine with cURL commandline tool, but failed to work with cpprestsdk. How could I debug it? Where could I found the...

Fixes #1457 On Windows build, it just enables threadpool.cpp compilation for asio-only configuration (where websockets are excluded, see linked issue description), as already done for the websockets case.

Hello, I need to set a socket option before the connection is established. I tried the invoke_nativehandle_options callback but the socket handle is invalid at that time.Is there a way...

Re-Raising PR #702. Rebase - Done. I will work on fixing the issues and tests.

I got an exception about an invalid parameter to a function that considers such parameters fatal, when trying to run the app made using the source code HTTP Client Getting...

Hi, I have tried many methods to detect browser close events. But, Unfortunately, I have not been able to detect the close. ![image](https://user-images.githubusercontent.com/17909394/137864712-dad5fc94-bc24-4914-8850-8680c466ad5f.png) I used this example here for google/facebook...

…constructor - should set _M_HasCancellationToken. Bug was introduced in PPL in VS2013 and fixed in VS2015 but survives in PPLX

std::unique_ptr m_listener; void Host() { m_listener = std::make_unique("http://192.168.1.237:8080"); m_listener->support(methods::GET, WebServer::Get_Client); m_listener->open().wait(); } **// for every http call, Get_Client gets called twice** static void Get_Client(http_request request) { Instance i(10,20201); if(i.CreateDirectory()) {...

Hello I have a project where I want to compile some boost libraries and cpprestsdk from source in the same cmake project. I added boost compilation as a custom target...

Hello, Working on a small toy project, I could use support for types with no default constructor in tasks. From what I've seen in the code, that could be handled...