4#include <unordered_map>
13using std::stringstream;
14using std::unordered_map;
146 this->getParameters = parameters;
162 this->postParameters = parameters;
237 static string urlEncode(
const string& value);
void setBody(const string &contentType, const string &body)
Set body.
static const string HTTP_METHOD_GET
const unordered_map< string, string > & getGETParameters()
Get GET parameter.
void setContentType(const string &contentType)
Set content type.
static const string HTTP_METHOD_DELETE
const string & getBody()
Get body.
const vector< string > & getResponseHeaders()
const unordered_map< string, string > & getPOSTParameters()
Get POST parameter.
const string & getPassword()
Get password.
void setPassword(const string &password)
Set password.
static const constexpr int16_t HTTP_STATUSCODE_OK
void setPOSTParameters(const unordered_map< string, string > ¶meters)
Set POST parameter.
const string & getURL()
Get URL.
void execute()
Execute HTTP request.
static const string HTTP_METHOD_POST
static const string HTTP_METHOD_PUT
unordered_map< string, string > getParameters
void parseHTTPResponseHeaders(stringstream &rawResponse, int16_t &httpStatusCode, vector< string > &httpHeader)
Parse HTTP response headers.
void setGETParameters(const unordered_map< string, string > ¶meters)
Set GET parameter.
static const string HTTP_METHOD_HEAD
void setUsername(const string &username)
Set username.
string createHTTPRequestHeaders(const string &hostName, const string &method, const string &relativeUrl, const unordered_map< string, string > &getParameters, const unordered_map< string, string > &postParameters, const string &body)
Create HTTP request headers.
const string & getContentType()
Get content type.
void setMethod(const string &method)
Set method.
unordered_map< string, string > postParameters
static string urlEncode(const string &value)
Returns a URL encoded representation of value.
vector< string > httpHeader
const string & getMethod()
Get method.
void reset()
Reset this HTTP client.
const string & getUsername()
Get username.
stringstream & getResponse()
void setURL(const string &url)
Set URL.
Base exception class for network exceptions.