arduino/libraries/ESP8266RestClient/RestClient.h
2018-11-03 20:21:33 +00:00

55 lines
1.4 KiB
C++

#include <Arduino.h>
#include <ESP8266WiFi.h>
class RestClient {
public:
RestClient(const char* host);
RestClient(const char* _host, int _port);
//Client Setup
int begin(const char* ssid, const char* pass);
//Generic HTTP Request
int request(const char* method, const char* path,
const char* body, String* response);
// Set a Request Header
void setHeader(const char*);
// Set Content-Type Header
void setContentType(const char*);
// GET path
int get(const char*);
// GET path and response
int get(const char*, String*);
// POST path and body
int post(const char* path, const char* body);
// POST path and body and response
int post(const char* path, const char* body, String*);
// PUT path and body
int put(const char* path, const char* body);
// PUT path and body and response
int put(const char* path, const char* body, String*);
// DELETE path
int del(const char*);
// DELETE path and body
int del(const char*, const char*);
// DELETE path and response
int del(const char*, String*);
// DELETE path and body and response
int del(const char*, const char*, String*);
private:
WiFiClient client;
int readResponse(String*);
void write(const char*);
const char* host;
int port;
int num_headers;
const char* headers[10];
const char* contentType;
};