2. Ensure all credentials are purged on device deletion to avoid security issues 3. Clear calibration state (set to false) on device deletion.
12 lines
221 B
C++
12 lines
221 B
C++
#ifndef BMHTTP_H
|
|
#define BMHTTP_H
|
|
#include <string>
|
|
#include "cJSON.h"
|
|
|
|
extern std::string webToken;
|
|
|
|
bool httpGET(std::string endpoint, std::string token, cJSON* &JSONresponse);
|
|
|
|
void deleteWiFiAndTokenDetails();
|
|
|
|
#endif |