slacking icon indicating copy to clipboard operation
slacking copied to clipboard

Modern Slack C++ 11 library for communicating with the Web Slack API

Results 3 slacking issues
Sort by recently updated
recently updated
newest added

I get this error thrown when trying to post a message: "curl_easy_perform() failed Peer certificate cannot be authenticated with given CA certificates" I have tried following this guide here: https://cleentfaar.github.io/slack/...

enhancement

Hollo there! I found memory leaks. ``` inline std::string Session::easyEscape(const std::string& text) { char *encoded_output = curl_easy_escape(curl_, text.c_str(), static_cast(text.length())); return std::string{encoded_output}; } ``` This code needs to free memory. For...