Toast/TriviaBot/bot/http/HTTP.hpp

15 lines
395 B
C++
Raw Permalink Normal View History

2016-08-15 17:47:34 +01:00
#ifndef BOT_HTTP_HTTP
#define BOT_HTTP_HTTP
#include <iostream>
#include <curl/curl.h>
class BotConfig;
namespace HTTP {
std::string post_request(std::string url, std::string content_type, std::string data, long *response_code, std::string token, std::string ca_location);
std::string get_request(std::string url, long *response_code, std::string token, std::string ca_location);
}
#endif