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

I want to use Azure blob upload binary, my code: { int i = 0x3333; int iLen = sizeof(i); void *pData = &i; concurrency::streams::streambuf temp; temp.putn((uint8_t*)pData, iLen);// m_buffer is empty,...

Hi, I was trying web proxy basic auth in cpprestsdk for Ubuntu 20, and the leak sanitizer detected memory leaks. I think the problem comes from this function in [web_utilities.h](https://github.com/microsoft/cpprestsdk/blob/master/Release/include/cpprest/details/web_utilities.h):...

Dear Developers, When I follow this [Build for Android on Linux](https://github.com/microsoft/cpprestsdk/wiki/How-to-build-for-Android-on-Linux-(2.3)) to build cpprestsdk, I can not build successfully. The error is like: make[3]: Entering directory '/home/baop/locnt/casablanca/Build_android/build/openssl/openssl-1.1.0j-armeabi-v7a' LD_LIBRARY_PATH=: clang -DDSO_DLFCN...

When implementing restapi using cpprest with https schema, memory leak is observed which is pointing to CRYPTO libraries api call i.e CRYPTO_zalloc. If used with http schema, there is no...

**OS**: Ubuntu 20.04.2 **Compiler**: GCC 9.4.0 **Example** ``` { "user_id": 1,sasd123 "post_id": 16 } ```

How to use it: ... static const void route_registeration() { rest_api_router::register_route("/api/v1/api1/action1", &api1::Action1); rest_api_router::register_route("/api/v1/api1/action2", &api1::Action2); rest_api_router::register_route("/api/v1/api2/action1", &api2::Action1); rest_api_router::register_route("/api/v1/api2/action2", &api2::Action2); } ... baseListener.support_rest_api_routing(route_registeration); ... full code: Release/samples/RestApiRouter

I was setting up a project yesterday using 1. VS2022 2. CpprestSdk 3. Conan Package _(ASIDE: Now I understand that Microsoft has a package manager, however for those of us...

Similar question to issue [#592 http_client does not gracefully handle remotely-closed keepalive connections (Linux/ASIO) ](https://github.com/microsoft/cpprestsdk/issues/592) I used `http_listener` to start an https server with ssl config using ` web::http::experimental::listener::http_listener_config::set_ssl_context_callback`. When...

Verified the http_client in Windows 11 OS, able to communicate in TLS1.3 issue #1548

code: ``` class A { public: ~A() { delete p; } http_client* p; } a; int main() { a.p = new http_client(U("http://www.bing.com/")); a.p->request(web::http::methods::POST); return 0; } ``` environment: ``` Apple...