Basic HTTP client.
More...
#include <tdme/network/httpclient/HTTPClient.h>
|
static string | urlEncode (const string &value) |
| Returns a URL encoded representation of value. More...
|
|
Basic HTTP client.
- Author
- Andreas Drewke
Definition at line 24 of file HTTPClient.h.
◆ createHTTPRequestHeaders()
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 |
|
) |
| |
|
private |
Create HTTP request headers.
- Parameters
-
hostName | host name |
method | method |
relativeUrl | url relative to server root |
getParameters | get parameters |
postParameter | post parameters |
body | body |
Definition at line 78 of file HTTPClient.cpp.
◆ execute()
◆ getBody()
const string & getBody |
( |
| ) |
|
|
inline |
◆ getContentType()
const string & getContentType |
( |
| ) |
|
|
inline |
Get content type.
- Returns
- content type
Definition at line 187 of file HTTPClient.h.
◆ getGETParameters()
const unordered_map< string, string > & getGETParameters |
( |
| ) |
|
|
inline |
Get GET parameter.
- Returns
- GET parameter
Definition at line 137 of file HTTPClient.h.
◆ getMethod()
const string & getMethod |
( |
| ) |
|
|
inline |
◆ getPassword()
const string & getPassword |
( |
| ) |
|
|
inline |
◆ getPOSTParameters()
const unordered_map< string, string > & getPOSTParameters |
( |
| ) |
|
|
inline |
Get POST parameter.
- Returns
- POST parameter
Definition at line 153 of file HTTPClient.h.
◆ getResponse()
stringstream & getResponse |
( |
| ) |
|
|
inline |
- Returns
- complete response stream
Definition at line 215 of file HTTPClient.h.
◆ getResponseHeaders()
const vector< string > & getResponseHeaders |
( |
| ) |
|
|
inline |
◆ getStatusCode()
int16_t getStatusCode |
( |
| ) |
|
|
inline |
◆ getURL()
const string & getURL |
( |
| ) |
|
|
inline |
◆ getUsername()
const string & getUsername |
( |
| ) |
|
|
inline |
◆ parseHTTPResponseHeaders()
void parseHTTPResponseHeaders |
( |
stringstream & |
rawResponse, |
|
|
int16_t & |
httpStatusCode, |
|
|
vector< string > & |
httpHeader |
|
) |
| |
|
private |
Parse HTTP response headers.
- Parameters
-
rawResponse | raw response |
httpStatusCode | HTTP status code |
httpHeader | HTTP header |
Definition at line 116 of file HTTPClient.cpp.
◆ reset()
◆ setBody()
void setBody |
( |
const string & |
contentType, |
|
|
const string & |
body |
|
) |
| |
|
inline |
Set body.
- Parameters
-
contentType | content type |
body | body |
Definition at line 178 of file HTTPClient.h.
◆ setContentType()
void setContentType |
( |
const string & |
contentType | ) |
|
|
inline |
◆ setGETParameters()
void setGETParameters |
( |
const unordered_map< string, string > & |
parameters | ) |
|
|
inline |
◆ setMethod()
void setMethod |
( |
const string & |
method | ) |
|
|
inline |
◆ setPassword()
void setPassword |
( |
const string & |
password | ) |
|
|
inline |
◆ setPOSTParameters()
void setPOSTParameters |
( |
const unordered_map< string, string > & |
parameters | ) |
|
|
inline |
Set POST parameter.
- Parameters
-
Definition at line 161 of file HTTPClient.h.
◆ setURL()
void setURL |
( |
const string & |
url | ) |
|
|
inline |
◆ setUsername()
void setUsername |
( |
const string & |
username | ) |
|
|
inline |
◆ urlEncode()
string urlEncode |
( |
const string & |
value | ) |
|
|
static |
Returns a URL encoded representation of value.
- Returns
- URL encoded value
Definition at line 53 of file HTTPClient.cpp.
◆ body
◆ contentType
◆ getParameters
unordered_map<string, string> getParameters |
|
private |
◆ HTTP_METHOD_DELETE
const string HTTP_METHOD_DELETE = "DELETE" |
|
static |
◆ HTTP_METHOD_GET
const string HTTP_METHOD_GET = "GET" |
|
static |
◆ HTTP_METHOD_HEAD
const string HTTP_METHOD_HEAD = "HEAD" |
|
static |
◆ HTTP_METHOD_POST
const string HTTP_METHOD_POST = "POST" |
|
static |
◆ HTTP_METHOD_PUT
const string HTTP_METHOD_PUT = "PUT" |
|
static |
◆ HTTP_STATUSCODE_OK
const constexpr int16_t HTTP_STATUSCODE_OK { 200 } |
|
staticconstexpr |
◆ httpHeader
vector<string> httpHeader |
|
private |
◆ httpStatusCode
◆ method
◆ password
◆ postParameters
unordered_map<string, string> postParameters |
|
private |
◆ rawResponse
◆ url
◆ username
The documentation for this class was generated from the following files:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/network/httpclient/HTTPClient.h
- /home/andreas/Development/drewke.net/tdme2/src/tdme/network/httpclient/HTTPClient.cpp